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