[Spring] JPA에서 Query Log 확인하기

아현·2024년 9월 3일
0

Spring

목록 보기
6/7

출처


1. application.yml 수정


1) 콘솔 로그(spring.jpa.show-sql)로 출력하는 방법



spring:
  jpa:
    show-sql: true # 콘솔로그로 출력하려면
    properties:
      hibernate:
        format_sql: true # SQL 포맷팅
        highlight_sql: true # ANSI 코드에 색을 나타낸다
        use_sql_comments: true # SQL 내부에 /* */ 주석 추가




2) logger에 출력하는 방법(logging.level.org.hibernate.SQL)이 있으니 상황에 맞게 사용하면 된다.




logging:
  level:
    org.hibernate.SQL: debug # logger에 출력하려면
    org.hibernate.type.descriptor.sql: trace # 파라미터 값 출력



profile
For the sake of someone who studies computer science

0개의 댓글