본문 바로가기
Java

spring boot, hibernate 쿼리 로그 보이기

by pikisvill 2021. 8. 6.

application.yml

 

spring:

    jpa:

        properties:
            hibernate:
                show_sql: true
                format_sql: true
                use_sql_comments: true

logging:
    level:
        root: info
        org.hibernate.SQL: debug
        org.hibernate.type.descriptor.sql.BasicBinder: trace

댓글