作用
用于输出每条SQL及其执行时间
配置
在MybatisPlusConfig中添加插件
@Bean
@Profile({"dev","test"})//设置dev test环境开启,保证效率
public PerformanceInterceptor performanceInterceptor(){
PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor();
performanceInterceptor.setMaxTime(1);//设置SQL执行的最大时间,超过则不执行,单位为毫秒
performanceInterceptor.setFormat(true);//格式化
return performanceInterceptor;
}