Mybatis Plus 3.4.0分页拦截器的用法,解说mybatis plus 3.4.0的新内置插件
Posted MateCloud微服务
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis Plus 3.4.0分页拦截器的用法,解说mybatis plus 3.4.0的新内置插件相关的知识,希望对你有一定的参考价值。
Mybatis Plus 3.4.0
新增了如下地内置插件:
主体插件: MybatisPlusInterceptor
该插件内部插件集:
- 分页插件: PaginationInnerInterceptor
- 多租户插件: TenantLineInnerInterceptor
- 动态表名插件: DynamicTableNameInnerInterceptor
- 乐观锁插件: OptimisticLockerInnerInterceptor
- sql性能规范插件: IllegalSQLInnerInterceptor
- 防止全表更新与删除插件: BlockAttackInnerInterceptor
spring cloud alibaba配置分页插件
@Configuration
@MapperScan("scan.your.mapper.package")
public class MybatisPlusConfig
/**
* 新的分页插件,一缓和二缓遵循mybatis的规则,需要设置 MybatisConfiguration#useDeprecatedExecutor = false 避免缓存出现问题(该属性会在旧插件移除后一同移除)
*/
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor()
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
return interceptor;
@Bean
public ConfigurationCustomizer configurationCustomizer()
return configuration -> configuration.setUseDeprecatedExecutor(false);
更多详细的教程,请参见官方地址:https://mybatis.plus/guide/interceptor.html#%E4%BD%BF%E7%94%A8%E6%96%B9%E5%BC%8F-%E4%BB%A5%E5%88%86%E9%A1%B5%E6%8F%92%E4%BB%B6%E4%B8%BE%E4%BE%8B
应用案例
Matecloud就是采用了Mybatis plus 3.4.0的版本作为应用场景,具体参见:
https://github.com/matevip/matecloud
以上是关于Mybatis Plus 3.4.0分页拦截器的用法,解说mybatis plus 3.4.0的新内置插件的主要内容,如果未能解决你的问题,请参考以下文章
#yyds干货盘点# 使用 Mybatis——Plus 进行分页查询
springboot~mybatis-plus的DynamicTableNameInnerInterceptor实现分表