怎么通过修改Spring Boot应用的application.properties配置文件来屏蔽这个日志Hibernate: select count(app0_.Id) as col_0_0_ from App app0_ where ( app0_.isDeleted = 0)
时间: 2024-02-27 17:53:42 浏览: 65
如果你不想显示Hibernate的select count语句,可以在application.properties文件中添加如下配置:
```properties
spring.jpa.properties.hibernate.generate_statistics=false
spring.jpa.properties.hibernate.show_sql=false
spring.jpa.properties.hibernate.format_sql=false
```
这样就可以禁用Hibernate的SQL统计、SQL语句显示和SQL语句格式化功能,从而不再输出该日志。注意,这种方法会影响所有Hibernate的SQL语句日志输出。如果只想屏蔽特定的SQL语句,可以考虑使用日志过滤器或者自定义日志输出器来实现。
阅读全文