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
...
我也想显示成这种换行的,请问该如何设置?
回答:
application.properties:
spring.jpa.properties.hibernate.format_sql=true
application.yml:
spring: jpa:
properties:
hibernate:
format_sql: true
以上是 IDEA控制台打印SQL如何正确换行? 的全部内容, 来源链接: utcz.com/p/944772.html