Mybatis自定义拦截器,实现拼接sql和修改2

1.mybatis使用pageHelper分页功能受影响

       PageHelper的实现也是通过interceptor拦截实现的,所以二者如果在没有配置好拦截顺序的情况下,就会出现相互干扰的情况。这个需要在配置文件或者配置类中解决,拦截器是个集合,支持添加多个拦截器,其中拦截顺序也是需要注意的。

拦截器配置类如下:

import com.github.pagehelper.PageInterceptor;

import com.pingan.haofang.standard.common.interceptor.QueryByAppInterceptor;

import org.apache.ibatis.session.SqlSessionFactory;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.boot.context.properties.ConfigurationProperties;

import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.Configuration;

import javax.annotation.PostConstruct;

import java.util.List;

import java.util.Properties;

@Configuration

public class MybatisPageHelp {

    @Autowired

    private List<SqlSessionFactory> sqlSessionFactoryList;

    /**

    * 接受分页插件额外的属性

     * @return

    */

    @Bean

    @ConfigurationProperties(prefix = "pagehelper")

    public Properties pageHelperProperties() {

        return new Properties();

    }

    @PostConstruct

    public void addPageInterceptor() {

        QueryByAppInterceptor queryByAppInterceptor = new QueryByAppInterceptor();

        PageInterceptor pageInterceptor = new PageInterceptor();

        Properties properties = new Properties();

        //先把一般方式配置的属性放进去

        properties.putAll(pageHelperProperties());

        //在把特殊配置放进去,close-conn 利用上面方式时,就是 close-conn 而不是 closeConn,所以需要额外的一步

        pageInterceptor.setProperties(properties);

        for (SqlSessionFactory sqlSessionFactory : sqlSessionFactoryList) {

            sqlSessionFactory.getConfiguration().addInterceptor(pageInterceptor);

            sqlSessionFactory.getConfiguration().addInterceptor(queryByAppInterceptor);

        }

    }

}

2.拦截器优化后代码:相比上一篇博客拦截器的实现这里不再利用反射改变sql语句,而是直接更换了查询语句对象。

package com.pingan.haofang.standard.common.interceptor;

import com.pingan.haofang.standard.common.annotation.interceptor.QueryConfigInterceptor;

import com.pingan.haofang.standard.common.context.ManageThreadContext;

import com.pingan.haofang.standard.common.context.ManageUser;

import com.pingan.haofang.standard.common.context.SpringContextHelper;

import com.pingan.haofang.standard.common.exception.PolicyException;

import com.pingan.haofang.standard.common.util.StringUtil;

import com.pingan.haofang.standard.configmapping.dao.ConfigMapDao;

import com.pingan.haofang.standard.configmapping.domain.ConfigMapping;

import org.apache.ibatis.cache.CacheKey;

import org.apache.ibatis.executor.Executor;

import org.apache.ibatis.mapping.BoundSql;

import org.apache.ibatis.mapping.MappedStatement;

import org.apache.ibatis.mapping.ParameterMapping;

import org.apache.ibatis.mapping.SqlSource;

import org.apache.ibatis.plugin.*;

import org.apache.ibatis.session.ResultHandler;

import org.apache.ibatis.session.RowBounds;

import org.slf4j.Logger;

import org.slf4j.LoggerFactory;

import java.lang.reflect.Method;

import java.util.List;

import java.util.Properties;

@Intercepts(

        {

                @Signature(type = Executor.class, method = "query", args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class}),

                @Signature(type = Executor.class, method = "query", args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class, CacheKey.class, BoundSql.class}),

        }

)

public class QueryByAppInterceptor implements Interceptor {

    private static final Logger log = LoggerFactory.getLogger(QueryByAppInterceptor.class);

    static int MAPPED_STATEMENT_INDEX = 0;// 这是对应上面的args的序号

    private ConfigMapDao configMapDao;

    @Override

    public Object intercept(Invocation invocation) throws Throwable {

        Object result = null;

        ManageUser currentUser = ManageThreadContext.getManageVisitor();

        //当前用户为空不拦截

        if(currentUser == null){

            return invocation.proceed();

        }

        String appCode = currentUser.getCurrentApp();

        String version = currentUser.getCurrentAppVersion();

        //如果是管理员则不拦截

        if (currentUser.isAdmin()) {

            return invocation.proceed();

        }

        // 应用不存在不拦截

        if(StringUtil.isBlank(appCode) || StringUtil.isBlank(version)){

            return invocation.proceed();

        }

        configMapDao = SpringContextHelper.getBean(ConfigMapDao.class);

        Object[] args = invocation.getArgs();

        MappedStatement ms = (MappedStatement) args[0];

        //id为执行的mapper方法的全路径名,如com.uv.dao.UserMapper.insertUser

        String mId = ms.getId();

        //sql语句类型 select、delete、insert、update

        String sqlCommandType = ms.getSqlCommandType().toString();

        Object parameter = args[1];

        BoundSql boundSql  = ms.getBoundSql(parameter);;

        //获取到原始sql语句

        String sql = boundSql.getSql();

        //注解逻辑判断  添加注解了才拦截

        Class<?> classType = Class.forName(mId.substring(0, mId.lastIndexOf(".")));

        String mName = mId.substring(mId.lastIndexOf(".") + 1, mId.length());

        Method method1 = null;

        for (Method method : classType.getDeclaredMethods()) {

            if( !mName.equals(method.getName()) ){

                continue;

            }else{

                if(method.isAnnotationPresent(QueryConfigInterceptor.class)){

                    QueryConfigInterceptor interceptorAnnotation = method.getAnnotation(QueryConfigInterceptor.class);

                    if (interceptorAnnotation.flag()){

                        method1 = method;

                    }

                }

                break;

            }

        }

        if(method1 != null){

            //组装新的sql

            String mSql = this.process(sql, appCode, version);

            // 重新new一个查询语句对像

            BoundSql newBoundSql = new BoundSql(ms.getConfiguration(), mSql, boundSql.getParameterMappings(), boundSql.getParameterObject());

            // 把新的查询放到statement里

            MappedStatement newMs = copyFromMappedStatement(ms, new BoundSqlSqlSource(newBoundSql));

            for (ParameterMapping mapping : boundSql.getParameterMappings()) {

                String prop = mapping.getProperty();

                if (boundSql.hasAdditionalParameter(prop)) {

                    newBoundSql.setAdditionalParameter(prop, boundSql.getAdditionalParameter(prop));

                }

            }

            final Object[] queryArgs = invocation.getArgs();

            queryArgs[MAPPED_STATEMENT_INDEX] = newMs;

//            //通过反射修改sql语句

//            Field field = boundSql.getClass().getDeclaredField("sql");

//            field.setAccessible(true);

//            field.set(boundSql, mSql);

        }

        return invocation.proceed();

    }

    private String process(String sql, String appCode, String version ){

        String msql="";

        //此处隐去与拦截器不相关的sql处理相关逻辑

        return mSql;

    }

    public static class BoundSqlSqlSource implements SqlSource {

        private BoundSql boundSql;

        public BoundSqlSqlSource(BoundSql boundSql) {

            this.boundSql = boundSql;

        }

        public BoundSql getBoundSql(Object parameterObject) {

            return boundSql;

        }

    }

    private MappedStatement copyFromMappedStatement(MappedStatement ms, SqlSource newSqlSource) {

        MappedStatement.Builder builder = new MappedStatement.Builder(ms.getConfiguration(), ms.getId(), newSqlSource, ms.getSqlCommandType());

        builder.resource(ms.getResource());

        builder.fetchSize(ms.getFetchSize());

        builder.statementType(ms.getStatementType());

        builder.keyGenerator(ms.getKeyGenerator());

        if (ms.getKeyProperties() != null && ms.getKeyProperties().length > 0) {

            builder.keyProperty(ms.getKeyProperties()[0]);

        }

        builder.timeout(ms.getTimeout());

        builder.parameterMap(ms.getParameterMap());

        builder.resultMaps(ms.getResultMaps());

        builder.resultSetType(ms.getResultSetType());

        builder.cache(ms.getCache());

        builder.flushCacheRequired(ms.isFlushCacheRequired());

        builder.useCache(ms.isUseCache());

        return builder.build();

    }

    @Override

    public Object plugin(Object target) {

        return Plugin.wrap(target, this);

    }

    @Override

    public void setProperties(Properties properties) {

    }

}

3.多个拦截器执行有顺序之分,具体可以从官网介绍中寻找答案

https://pagehelper.github.io/docs/interceptor/

4.许多小伙伴反应按照第一篇博客操作,拦截器没生效,最大的可能就是:拦截器没有注入。第一个版本是在拦截器类上添加@Component注解,但是这个会导致pageHelper分页发生冲突,所以我们需要在配置类中将拦截器注入,并且由添加顺序来控制拦截顺序,具体代码看第2点。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容