Springboot在application.properties里配置打印 SQL 和参数

Posted 梦幻朵颜 Joyce Zhu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot在application.properties里配置打印 SQL 和参数相关的知识,希望对你有一定的参考价值。

application.properties配置参考

 

1、自定义log配置文件

logging.config=classpath:logback-spring.xml      

2、具体某个包路径使用什么日志级别:

logging.level.org.springframework=INFO

 

3、打印控制台日志,彩色和非彩色配置:

logging.pattern.console=%d{dd-MM-yyyy HH:mm:ss.SSS} %magenta([%thread]) %highlight(%-5level) %logger.%M - %msg%n                     // 非彩色
logging.pattern.console=%black(%d{yyyy-MM-dd HH:mm:ss.SSS}) %highlight(%-5level) %yellow(%C:%L{1.}) %msg%n%throwable                 // 彩色,在IDEA里有效

 

4、SpringJdbc配置打印SQL和参数:

logging.level.org.springframework.jdbc.core.JdbcTemplate=DEBUG
logging.level.org.springframework.jdbc.core.StatementCreatorUtils=TRACE

 

end.

以上是关于Springboot在application.properties里配置打印 SQL 和参数的主要内容,如果未能解决你的问题,请参考以下文章

springboot.springboot用最简单的方式整合mybatis

SpringBoot使用Redis缓存

Spring启动连接mysql中的多个模式

Kafka中@KafkaListener如何动态指定多个topic

spring boot jsp文件无法查看

management.server.port 和 management.port 属性有啥区别?