开发者学堂课程【微服务+全栈在线教育实战项目演练(SpringCloud Alibaba+SpringBoot):项目技术点-MybatisPlus 性能分析插件】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/667/detail/11276
项目技术点-MybatisPlus 性能分析插件
性能分析
简介:
性能分析拦截器,用于输出每条 SQL 语句及其执行时间
SQL 性能执行分析,开发环境使用,超过指定时间,停止运行。有助于发现问题
1、配置插件
(1)参数说明
参数:maxTime:SQL 执行最大时长,超过自动停止运行,有助于发现问题。
参数:format:SQL 是否格式化,默认 false。
(2)在 MybatisPlusConfig 中配置
/**
*SQL 执行性能分析插件
*开发环境使用,线上不推荐。maxTime 指的是 sql 最大执行时长
@Bean
@Profile({"dev","test"})
//设置 devtest 环境开启
public PerformanceInterceptor performanceInterceptor() {
PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor ();
performanceInterceptor.setMaxTime(100);
//ms,超过此处设置的 ms 则 sq1不执行
performanceInterceptor.setFormat(true);
return performanceInterceptor ;
运行代码
/**
* SQL 执行性能分析插件
*开发环境使用,线上不推荐。maxTime 指的是 sq1最大执行时长
*三种环境
*dev:开发环境
*test:测试环境
*prod:生产环境
@Bean
@Profile({"dev","test"})
//设置devtest环境开启
public PerformanceInterceptor performanceInterceptor() {
PerformanceInterceptor performanceInterceptor=new PerformanceInterceptor();
performanceInterceptor.setMaxTime(100):
//ms,超过此处设置的ms则sq1不执行
performanceInterceptor.setFormat (true);
return performance Interceptor;
(3) Spring Boot 中设置 dev 环境
#环境设置:dev、test、prod2
spring.profiles.active-dev
可以针对各环境新建不同的配置文件 application-dev.properties. application- test.properties、application-prod.properties 也可以自定义环境名称:如 test1、test2
2、测试
(1) 常规测试
/**
*测试性能分析插件
@Test
public void testPerformance()
User user = new User();
user.setName("HEHelen" );
user.setEmail("helen@sina.co");
user.setAge(18);
userMapper.insert(user);
(2)将 maxTime 改小之后再次进行测试
performanceInterceptor.setMaxTime(5);
//ms,超过此处设置的 ms 不执行
如果执行时间过长,则抛出
常: The SQL execution time is too large,
输出:org.mybatis.spring.MyBatisSystemException:nestedexceptionisorg.apache.ibatis.exceptions.PersistenceException:
Errorupdatingdatabase.Cause:com.baomidou.mybatisplus.core.exceptions.MybatisPlusException:TheSQLexecution time is toolarge,please optimize