[JPA & Hibernate] H2 Console 및 로깅 설정

원알렉스·2020년 8월 10일
0

JPA

목록 보기
1/16
post-thumbnail

깃허브 소스코드
Udemy 강의영상

H2-Console 활성화

spring:
  h2:
    console:
      enabled: true

Hibernate Statistics 활성화

spring:
  jpa:
    properties:
      hibernate:
        generate_statistics: true

Statistics 로깅 활성화

logging:
  level:
    org:
      hibernate:
        stat: debug

SQL Query 출력 활성화

spring:
  jpa:
    show-sql: true

SQL Query Format 활성화(운영 환경에서는 비활성화하기)

spring:
  jpa:
    properties:
      hibernate:
        format_sql: true

Parameter Trace 로깅 활성화

logging:
  level:
    org:
      hibernate:
        type: trace
profile
Alex's Develog 🤔

0개의 댓글