在Spring Boot
項目的application.properties/application.yml
配置文件中,JPA打印SQL日志格式化輸出配置項spring.jpa.properties.hibernate.format-sql=true
不生效,需要改為spring.jpa.properties.hibernate.format_sql=true
才有效果。
附上個別JPA相關配置項:
spring.jpa.database-platform=org.hibernate.dialect.SQLServer2012Dialect
spring.jpa.open-in-view=false
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format_sql=true