IDEA控制台打印SQL如何正确换行?

在IDEA中使用JPA时
设置了show-sql: true
打印出的sql是类似这样密集的一行:

update table set name=?, length_type=?, list_order=?, name=?, type=?, uptime=? where id=?

我看到网上很多都是这样换行显示的:

select 
    id,name
from 
    table
where 
    ...
join
    ...

我也想显示成这种换行的,请问该如何设置?

阅读 2.2k
1 个回答

application.properties:

spring.jpa.properties.hibernate.format_sql=true

application.yml:

spring:
  jpa:
    properties:
      hibernate:
        format_sql: true
推荐问题
宣传栏