目录
1. mp官网
任何时候官网和源码都是我们最好的学习资料
2. mp依赖
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.7</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-extension</artifactId>
<version>3.5.7</version>
</dependency>
3. mp拦截器配置
@Configuration
public class MybatisPlusConf {
private static final Logger log = LoggerFactory.getLogger(MybatisPlusConf.class);
@Bean
public PaginationInnerInterceptor paginationInnerInterceptor() {
PaginationInnerInterceptor paginationInterceptor = new PaginationInnerInterceptor();
paginationInterceptor.setMaxLimit(-1L);
log.info("注册mp分页插件");
return paginationInterceptor;
}
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor();
mybatisPlusInterceptor.setInterceptors(Collections.singletonList(paginationInnerInterceptor()));
log.info("注册mp拦截器");
return mybatisPlusInterceptor;
}
// MySqlInjector
}
下面这段代码在extension源码中,可以看到还可以添加很多的 InnerInterceptor
添加自定义功能只需要实现InnerInterceptor这个接口,将其添加到MybatisPlusInterceptor拦截器中
4. sql注入器
在源码中我们发现了List<AbstractMethod> methodList = super.getMethodList(configuration, mapperClass, tableInfo)这行代码
我们跳转到这个父类里面,我们可以看到注入了很多的方法
我们进入其中一个,可以看到这是一个构建sql的方法
继续查看SqlMethod,看以看到是枚举类定义了这些支持的方法
综上,所以我们也可以通过继承DefaultSqlInjector类重写getMethodList方法,注入我们自定义构建sql的方法
public class MySqlInjector extends DefaultSqlInjector {
@Override
public List<AbstractMethod> getMethodList(Class<?> mapperClass, TableInfo tableInfo) {
List<AbstractMethod> methodList = super.getMethodList(mapperClass, tableInfo);
methodList.add(new AbstractMethod("methodName") {
@Override
public MappedStatement injectMappedStatement(Class<?> mapperClass, Class<?> modelClass, TableInfo tableInfo) {
// 自定义
return null;
}
});
return methodList;
}
}