MyBatis-plus拦截器

在项目中,会出现一些对sql处理的需求,如果sql操作很多,为了简化处理,可以在sql执行的时候加入一个拦截器,并对将要执行的sql进行统一的处理。

mybatis拦截器

在以前一般都选用mybatis自带的一个拦截器叫做Interceptor接口实现,实现此接口重写里面的intercept方法对sql进行处理,但是需要在类上加入我们需要拦截的是查询还是更新的操作的注解,

如下:

@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}),
                @Signature(type = Executor.class, method = "update", args = {MappedStatement.class, Object.class}),
        }
)

这种方式用起来比较麻烦,如今我们有更简单的方式,mybatis-plus在3.4.0以后提供了一个自己的拦截器InnerInterceptor,该拦截器的优势在于,它特别细粒度的为我们提供了更新和查询的拦截方法

mybatis-plus拦截器

        
            com.baomidou
            mybatis-plus-boot-starter
            3.5.2
        
        
            com.alibaba
            druid-spring-boot-starter
            1.2.5
        
        
            mysql
            mysql-connector-java
            runtime
        

mybatis-plus的拦截器提供了细粒度的方法,无需去判断查询或更新操作 

public interface InnerInterceptor {

    /**
     * 判断是否执行 {@link Executor#query(MappedStatement, Object, RowBounds, ResultHandler, CacheKey, BoundSql)}
     * 

* 如果不执行query操作,则返回 {@link Collections#emptyList()} * * @param executor Executor(可能是代理对象) * @param ms MappedStatement * @param parameter parameter * @param rowBounds rowBounds * @param resultHandler resultHandler * @param boundSql boundSql * @return 新的 boundSql */ default boolean willDoQuery(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException { return true; } /** * {@link Executor#query(MappedStatement, Object, RowBounds, ResultHandler, CacheKey, BoundSql)} 操作前置处理 *

* 改改sql啥的 * * @param executor Executor(可能是代理对象) * @param ms MappedStatement * @param parameter parameter * @param rowBounds rowBounds * @param resultHandler resultHandler * @param boundSql boundSql */ default void beforeQuery(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException { // do nothing } /** * 判断是否执行 {@link Executor#update(MappedStatement, Object)} *

* 如果不执行update操作,则影响行数的值为 -1 * * @param executor Executor(可能是代理对象) * @param ms MappedStatement * @param parameter parameter */ default boolean willDoUpdate(Executor executor, MappedStatement ms, Object parameter) throws SQLException { return true; } /** * {@link Executor#update(MappedStatement, Object)} 操作前置处理 *

* 改改sql啥的 * * @param executor Executor(可能是代理对象) * @param ms MappedStatement * @param parameter parameter */ default void beforeUpdate(Executor executor, MappedStatement ms, Object parameter) throws SQLException { // do nothing } /** * {@link StatementHandler#prepare(Connection, Integer)} 操作前置处理 *

* 改改sql啥的 * * @param sh StatementHandler(可能是代理对象) * @param connection Connection * @param transactionTimeout transactionTimeout */ default void beforePrepare(StatementHandler sh, Connection connection, Integer transactionTimeout) { // do nothing } default void setProperties(Properties properties) { // do nothing } }

加入自定义拦截器

@Configuration
public class CipherMybatisPlusConfig {
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        
        // 自定义拦截器,先添加先执行。
        interceptor.addInnerInterceptor(new LizzMybatisIntercepts());
        // 自带分页拦截器
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        return interceptor;
    }
}

你可能感兴趣的:(mybatis,java,mybatisplus)