小编典典

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

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不支持吗?


阅读 526

收藏
2020-05-30

共1个答案

小编典典

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

spring.jpa.properties.*

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

查看文档的这一部分

2020-05-30