在springboot中注入mybatisplus的性能插件bean
时间: 2023-03-30 14:00:24 浏览: 127
MyBatisPlus基础使用代码
可以在SpringBoot中使用以下代码注入MybatisPlus的性能插件bean:
```java
@Configuration
public class MybatisPlusConfig {
@Bean
public PerformanceInterceptor performanceInterceptor() {
return new PerformanceInterceptor();
}
}
```
然后在MybatisPlus的配置文件中添加以下配置:
```yaml
mybatis-plus:
configuration:
# 开启驼峰命名转换
map-underscore-to-camel-case: true
# 配置性能插件
interceptor:
- com.baomidou.mybatisplus.extension.plugins.PerformanceInterceptor
```
这样就可以在MybatisPlus中使用性能插件了。
阅读全文