MybatisPlus学习笔记03——性能分析插件的使用

今天来记录一下性能分析插件的使用。

1.首先需要添加性能分析插件依赖

        
        
            p6spy
            p6spy
            3.9.1
        

2.修改配置文件中连接和驱动类,连接需要在jdbc后加p6spy

#Production System
spring.datasource.url = jdbc:p6spy:oracle:thin:@//x.x.x.x:1521/XE
spring.datasource.username = 123
spring.datasource.password = 123
spring.datasource.driver-class-name = com.p6spy.engine.spy.P6SpyDriver

3.添加一个spy.properties文件

#3.2.1以上使用
modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory
#3.2.1以下使用或者不配置
#modulelist=com.p6spy.engine.logging.P6LogFactory,com.p6spy.engine.outage.P6OutageFactory
# 自定义日志打印
logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger
#日志输出到控制台
appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger
# 使用日志系统记录 sql
#appender=com.p6spy.engine.spy.appender.Slf4JLogger
# 设置 p6spy driver 代理
deregisterdrivers=true
# 取消JDBC URL前缀
useprefix=true
# 配置记录 Log 例外,可去掉的结果集有error,info,batch,debug,statement,commit,rollback,result,resultset.
excludecategories=info,debug,result,commit,resultset
# 日期格式
dateformat=yyyy-MM-dd HH:mm:ss
# 实际驱动可多个
#driverlist=org.h2.Driver
driverlist=oracle.jdbc.OracleDriver
# 是否开启慢SQL记录
outagedetection=true
# 慢SQL记录标准 2 秒
outagedetectioninterval=2

这样应该就搞定了,测试一下

可以打印出来分析结果了!

 

你可能感兴趣的:(Java,#,MybatisPlus)