如何在spring-boot中设置hibernate.format_sql?

我正在使用spring-boot自动配置进行数据库注入,并定义了属性:

spring.jpa.database=POSTGRESQL

spring.jpa.show-sql=true

spring.jpa.hibernate.ddl-auto=update

但是如何设置hibernate.format_sql=true?Spring Boot不支持吗?

回答:

Spring Boot将允许您使用以下命令设置任何可用的hibernate属性:

spring.jpa.properties.*

这样spring.jpa.properties.hibernate.format_sql=true也可以。

查看文档的这一部分

以上是 如何在spring-boot中设置hibernate.format_sql? 的全部内容, 来源链接: utcz.com/qa/410921.html

回到顶部