springboot后台打印sql
时间: 2023-10-09 13:05:37 浏览: 80
springboot log4jdbc 打印完整sql
4星 · 用户满意度95%
在 Spring Boot 中,可以通过配置项来开启 SQL 日志打印。具体来说,需要在 application.properties 或 application.yml 中添加以下配置:
application.properties:
```
# 打印 SQL 日志
spring.jpa.show-sql=true
# 格式化 SQL 日志
spring.jpa.properties.hibernate.format_sql=true
```
application.yml:
```
# 打印 SQL 日志
spring:
jpa:
show-sql: true
# 格式化 SQL 日志
jpa.properties.hibernate.format_sql: true
```
添加以上配置后,启动应用程序,在控制台中就可以看到 SQL 语句的日志输出了。
阅读全文