mybatis-plus拦截sql进行注入

起因:

        之前研究多租户的形式,是有mycat进行。但是mycat切换数据库需要在sql前增加注解语句。项目使用mybatis-plus,进行统一拦截。

上代码:

public class MyTenantParser extends TenantSqlParser {
    /**
     * 执行 SQL 解析
     *
     * @param statement JsqlParser Statement
     * @return
     */
    @Override
    public SqlInfo processParser(Statement statement) {
        if (statement instanceof Insert) {
            this.processInsert((Insert) statement);
        } else if (statement instanceof Select) {
            this.processSelectBody(((Select) statement).getSelectBody());
        } else if (statement instanceof Update) {
            this.processUpdate((Update) statement);
        } else if (statement instanceof Delete) {
            this.processDelete((Delete) statement);
        }
        logger.debug("parser sql: " + statement.toString());
        String sql;
        if (SessionUtil.getSession().getAttribute("datasource")!=null) {
            //获取要切换的db
            String node = (String) SessionUtil.getSession().getAttribute("datasource");
            sql ="/*mycat: datanode="+node+"*/" + statement.toString();
        } else {
            sql = statement.toString();
        }

        return SqlInfo.newInstance().setSql(sql);
    }

}

 

你可能感兴趣的:(mybatis-plus拦截sql进行注入)