Springboot整合p6spy

因为mybatis在打印SQL语句的时候参数为?而我们需要查看参数的具体数值,所以我们要加入我们的SQL日志打印工具p6spy

在项目的pom文件中引入p6spy所需jar包的坐标


    p6spy
    p6spy
    3.8.0

在配置文件中修改数据库连接池的地址,本次使用的是application.yml

在数据库连接URL中加入p6spy

Springboot整合p6spy_第1张图片

定义一个自定义打印日志类P6SpyLogger

public class P6SpyLogger implements MessageFormattingStrategy {

    private SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS");


    @Override
    public String formatMessage(int connectionId, String now, long elapsed, String category, String prepared, String sql, String s4) {
        return !"".equals(sql.trim()) ? this.format.format(new Date()) + " | took " + elapsed + "ms | " + category + " | connection " + connectionId + "\n " + sql + ";" : "";
    }
}

之后在resources文件夹下新建一个spy.properties文件

module.log=com.p6spy.engine.logging.P6LogFactory,com.p6spy.engine.outage.P6OutageFactory
# 自定义日志打印
logMessageFormat=com.tfjybj.lap.common.log.P6SpyLogger //自定义P6SpyLogger类的地址
# 使用日志系统记录sql
appender=com.p6spy.engine.spy.appender.StdoutLogger
## 配置记录Log例外
excludecategories=info,debug,result,batc,resultset
# 设置使用p6spy driver来做代理
deregisterdrivers=true
# 日期格式
dateformat=yyyy-MM-dd HH:mm:ss
# 实际驱动
driverlist=com.mysql.cj.jdbc.Driver
# 是否开启慢SQL记录
outagedetection=true
# 慢SQL记录标准 秒
outagedetectioninterval=2

之后进行测试,就可以查看我们查询的具体参数了

Springboot整合p6spy_第2张图片

你可能感兴趣的:(Java)