91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Springboot如何實現自定義mybatis攔截器

發布時間:2022-01-03 17:25:19 來源:億速云 閱讀:413 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關Springboot如何實現自定義mybatis攔截器,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

實踐的準備 :
 

整合mybatis ,然后故意寫了3個查詢方法, 1個是list 列表數據,2個是 單條數據 。

Springboot如何實現自定義mybatis攔截器

我們通過自己寫一個MybatisInterceptor實現 mybatis框架的 Interceptor來做文章:
 

MybatisInterceptor.java :

import org.apache.ibatis.executor.Executor;
import org.apache.ibatis.mapping.*;
import org.apache.ibatis.plugin.*;
import org.apache.ibatis.session.ResultHandler;
import org.apache.ibatis.session.RowBounds;
import org.springframework.stereotype.Component;
 
import java.lang.reflect.Method;
import java.util.*;
 
 
 
/**
 * @Author JCccc
 * @Description
 * @Date 2021/12/14 16:56
 */
@Component
@Intercepts({
        @Signature(type = Executor.class, method = "update", args = {MappedStatement.class, Object.class}),
        @Signature(type = Executor.class, method = "query", args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class})
})
public class MybatisInterceptor implements Interceptor {
 
    @Override
    public Object intercept(Invocation invocation) throws Throwable {
        //獲取執行參數
        Object[] objects = invocation.getArgs();
        MappedStatement ms = (MappedStatement) objects[0];
        //解析執行sql的map方法,開始自定義規則匹配邏輯
        String mapperMethodAllName = ms.getId();
        int lastIndex = mapperMethodAllName.lastIndexOf(".");
        String mapperClassStr = mapperMethodAllName.substring(0, lastIndex);
        String mapperClassMethodStr = mapperMethodAllName.substring((lastIndex + 1));
        Class<?> mapperClass = Class.forName(mapperClassStr);
        Method[] methods = mapperClass.getMethods();
        Class<?> returnType;
        for (Method method : methods) {
            if (method.getName().equals(mapperClassMethodStr)) {
                returnType = method.getReturnType();
                if (returnType.isAssignableFrom(List.class)) {
                    System.out.println("返回類型是 List");
                    System.out.println("針對List 做一些操作");
                } else if (returnType.isAssignableFrom(Set.class)) {
                    System.out.println("返回類型是 Set");
                    System.out.println("針對Set 做一些操作");
                } else{
                    BoundSql boundSql = ms.getSqlSource().getBoundSql(objects[1]);
                    String oldSql = boundSql.getSql().toLowerCase(Locale.CHINA).replace("[\\t\\n\\r]", " ");
                    if (!oldSql.contains("LIMIT")){
                        String newSql = boundSql.getSql().toLowerCase(Locale.CHINA).replace("[\\t\\n\\r]", " ") + " LIMIT 1";
                        BoundSql newBoundSql = new BoundSql(ms.getConfiguration(), newSql,
                                boundSql.getParameterMappings(), boundSql.getParameterObject());
                        MappedStatement newMs = newMappedStatement(ms, new MyBoundSqlSqlSource(newBoundSql));
                        for (ParameterMapping mapping : boundSql.getParameterMappings()) {
                            String prop = mapping.getProperty();
                            if (boundSql.hasAdditionalParameter(prop)) {
                                newBoundSql.setAdditionalParameter(prop, boundSql.getAdditionalParameter(prop));
                            }
                        }
                        Object[] queryArgs = invocation.getArgs();
                        queryArgs[0] = newMs;
                        System.out.println("打印新SQL語句" + newSql);
                    }
 
                }
            }
        }
        //繼續執行邏輯
        return invocation.proceed();
    }
 
 
    @Override
    public Object plugin(Object o) {
        //獲取代理權
        if (o instanceof Executor) {
            //如果是Executor(執行增刪改查操作),則攔截下來
            return Plugin.wrap(o, this);
        } else {
            return o;
        }
    }
 
    /**
     * 定義一個內部輔助類,作用是包裝 SQL
     */
    class MyBoundSqlSqlSource implements SqlSource {
        private BoundSql boundSql;
 
        public MyBoundSqlSqlSource(BoundSql boundSql) {
            this.boundSql = boundSql;
        }
 
        @Override
        public BoundSql getBoundSql(Object parameterObject) {
            return boundSql;
        }
 
    }
 
    private MappedStatement newMappedStatement(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 void setProperties(Properties properties) {
        //讀取mybatis配置文件中屬性
    }
 
 
}

簡單代碼端解析:

① 拿出執行參數,里面有很多東西給我們用的,我本篇主要是用MappedStatement。大家可以發揮自己的想法。 打debug可以自己看看里面的東西。

//獲取執行參數
Object[] objects = invocation.getArgs();
MappedStatement ms = (MappedStatement) objects[0];

Springboot如何實現自定義mybatis攔截器

 Springboot如何實現自定義mybatis攔截器

 ② 這里我主要是使用了從MappedStatement里面拿出來的id,做切割分別切出來 目前執行的sql的mapper是哪個,然后方法是哪個。

String mapperMethodAllName = ms.getId();
int lastIndex = mapperMethodAllName.lastIndexOf(".");
String mapperClassStr = mapperMethodAllName.substring(0, lastIndex);
String mapperClassMethodStr = mapperMethodAllName.substring((lastIndex + 1));

③ 這就是我自己隨便寫的一下,我直接根據切割出來的mapper類找出里面的方法,主要是為了拿出每個方法的返回類型,因為 我這篇實踐內容就是,判斷出單個pojo接受的mapper方法,加個LIMIT 1 , 其他的 LIST 、SET 、 Page 等等這些,我暫時不做擴展。

Class<?> mapperClass = Class.forName(mapperClassStr);
Method[] methods = mapperClass.getMethods();
Class<?> returnType;

 ④這一段代碼就是該篇的拓展邏輯了,從MappedStatement里面拿出 SqlSource,然后再拿出BoundSql,然后一頓操作 給加上 LIMIT 1  , 然后new 一個新的 MappedStatement,一頓操作塞回去invocation 里面

BoundSql boundSql = ms.getSqlSource().getBoundSql(objects[1]);
String oldSql = boundSql.getSql().toLowerCase(Locale.CHINA).replace("[\\t\\n\\r]", " ");
if (!oldSql.contains("LIMIT")){
    String newSql = boundSql.getSql().toLowerCase(Locale.CHINA).replace("[\\t\\n\\r]", " ") + " LIMIT 1";
    BoundSql newBoundSql = new BoundSql(ms.getConfiguration(), newSql,
            boundSql.getParameterMappings(), boundSql.getParameterObject());
    MappedStatement newMs = newMappedStatement(ms, new MyBoundSqlSqlSource(newBoundSql));
    for (ParameterMapping mapping : boundSql.getParameterMappings()) {
        String prop = mapping.getProperty();
        if (boundSql.hasAdditionalParameter(prop)) {
            newBoundSql.setAdditionalParameter(prop, boundSql.getAdditionalParameter(prop));
        }
    }
    Object[] queryArgs = invocation.getArgs();
    queryArgs[0] = newMs;
    System.out.println("打印新SQL語句:" + newSql);
}

OK,最后簡單來試試效果 :
 

Springboot如何實現自定義mybatis攔截器

 Springboot如何實現自定義mybatis攔截器

最后再重申一下,本篇文章內容只是一個拋磚引玉,隨便想的一些實踐效果,大家可以按照自己的想法發揮。

最后再補充一個 解決 mybatis自定義攔截器和 pagehelper 攔截器 沖突導致失效的問題出現的

解決方案:

加上一個攔截器配置類 

MyDataSourceInterceptorConfig.java :

import org.apache.ibatis.session.SqlSessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;
 
import java.util.List;
 
/**
 * @Author JCccc
 * @Description
 * @Date 2021/12/14 16:56
 */
@Component
public class MyDataSourceInterceptorConfig implements ApplicationListener<ContextRefreshedEvent> {
 
    @Autowired
    private MybatisInterceptor mybatisInterceptor;
 
    @Autowired
    private List<SqlSessionFactory> sqlSessionFactories;
 
    @Override
    public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {
        for (SqlSessionFactory factory : sqlSessionFactories) {
            factory.getConfiguration().addInterceptor(mybatisInterceptor);
        }
    }
}

最后最后再補充多一些,

文中 針對攔截的是Executor 這種接口的插件,

其實 還可以使用ParameterHandler、ResultSetHandler、StatementHandler。

每當執行這四種接口對象的方法時,就會進入攔截方法,然后我們可以根據不同的插件去拿不同的參數。

類似:

@Signature(method = "prepare", type = StatementHandler.class, args = {Connection.class,Integer.class})

然后可以做個轉換,也是可以取出相關的 BoundSql 等等 :

if (!(invocation.getTarget() instanceof RoutingStatementHandler)){
                return invocation.proceed();
            }
            RoutingStatementHandler statementHandler = (RoutingStatementHandler) invocation.getTarget();
            BoundSql boundSql = statementHandler.getBoundSql();
            String sql = boundSql.getSql().toUpperCase();

ParameterHandler、ResultSetHandler、StatementHandler、Executor ,不同的插件攔截,有不同的使用場景,想深入的看客們,可以深一下。

關于“Springboot如何實現自定義mybatis攔截器”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安徽省| 金平| 郸城县| 勃利县| 大田县| 孟村| 莱芜市| 彝良县| 亳州市| 嘉禾县| 泽州县| 雷州市| 夹江县| 石棉县| 无极县| 东丽区| 崇文区| 额敏县| 财经| 彭水| 从江县| 河南省| 延吉市| 永吉县| 凉山| 阳西县| 龙口市| 高尔夫| 灵川县| 仙居县| 武安市| 许昌市| 和田市| 罗山县| 房产| 赤峰市| 正安县| 北宁市| 湘潭市| 华坪县| 沾益县|