我正在使用spring-boot自动配置进行数据库注入,并定义了属性:
spring-boot
spring.jpa.database=POSTGRESQL spring.jpa.show-sql=true spring.jpa.hibernate.ddl-auto=update
但是如何设置hibernate.format_sql=true?Spring Boot不支持吗?
hibernate.format_sql=true
Spring Boot将允许您使用以下命令设置任何可用的hibernate属性:
spring.jpa.properties.*
这样spring.jpa.properties.hibernate.format_sql=true也可以。
spring.jpa.properties.hibernate.format_sql=true
查看文档的这一部分