在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