我想把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语句?


当前回答

在Spring引导中,我们可以使用两种方法记录SQL语句: 1:使用记录仪 2:标准方法


为日志记录器 您应该将这一行添加到应用程序中。属性文件:

logging.level.org.hibernate.SQL=DEBUG

标准方法 你应该在应用程序中添加这些行。属性文件:

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

其他回答

您可以简单地在应用程序中添加以下行。属性为stdout SQL查询:

spring.jpa.properties.hibernate.show_sql=true

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

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

翻译接受的答案YAML工作为我

logging:
  level:
    org:
      hibernate:
        SQL:
          TRACE
        type:
          descriptor:
            sql:
              BasicBinder:
                TRACE

在Spring引导中,我们可以使用两种方法记录SQL语句: 1:使用记录仪 2:标准方法


为日志记录器 您应该将这一行添加到应用程序中。属性文件:

logging.level.org.hibernate.SQL=DEBUG

标准方法 你应该在应用程序中添加这些行。属性文件:

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

根据文档,它是:

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