본문 바로가기
JPA

(Spring/JPA) Spring transaction logging / jpa entity manager logging

by Developer RyanKim 2020. 3. 11.

Spring transaction logging

jpa entity manager logging

 

logging:
  level:
    org:
      hibernate:
        SQL:
          debug
        type:
          descriptor:
            sql:
              BasicBinder: debug
      springframework:
        transaction: DEBUG
        orm:
          jpa: DEBUG

application.yml 파일에 설정


설정전 ↓

보이는 transaction 관련 로깅은 springframework.test 에서 제공하는 로깅.

 

 

설정후 

transaction 생성/ 종료/ 참여 여부 및 전파 유형, 고립레벨 로깅

EntityManger 생성 / 종료 로깅

생성되는 쿼리 로깅

댓글