我想把SQL语句记录到一个文件中。

我在application.properties中有以下属性:

spring.datasource.url=...
spring.datasource.username=user
spring.datasource.password=1234
spring.datasource.driver-class-name=net.sourceforge.jtds.jdbc.Driver

spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format_sql=true

security.ignored=true
security.basic.enabled=false

logging.level.org.springframework.web=INFO
logging.level.org.hibernate=INFO
logging.file=c:/temp/my-log/app.log

当我运行程序时,

cmd> mvn spring-boot:run

我可以在控制台中看到SQL语句,但它们没有出现在app.log中。该文件只包含Spring的基本日志。

我应该怎么做才能在日志文件中看到SQL语句?


当前回答

如果您在使用此设置时遇到了问题,并且它似乎有时有效而其他时候无效——请考虑它是否在单元测试期间不起作用。

许多人通过在测试继承层次结构中某处声明的@TestPropertySources注释来声明自定义测试时属性。这将覆盖您在应用程序中输入的任何内容。属性或其他生产属性设置,以便在测试时有效地忽略您正在设置的那些值。

其他回答

这也适用于标准输出:

spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
spring.jpa.properties.hibernate.format_sql=true

记录值:

logging.level.org.hibernate.type=trace

只需将此添加到application.properties。

在文件application.properties中使用这段代码:

# Enable logging for configuration troubleshooting
logging.level.org.hibernate.SQL=DEBUG
logging.level.com.zaxxer.hikari.HikariConfig=DEBUG
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE

你只需要在application.properties中设置spring.jpa.show-sql=true。

例如,您可以参考ConfigServerRepo/application.yaml。

根据文档,它是:

spring.jpa.show-sql=true # Enable logging of SQL statements.

在我的YAML文件:

logging:
  level:
    org.hibernate.SQL: DEBUG
    org.hibernate.type.descriptor.sql: TRACE

Spring Boot版本:2.3.5.RELEASE