반응형
의존성(dependency) 추가
implementation "org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4:1.16"
프로퍼티 파일 추가
파일 : log4jdbc.log4j2.properties
경로 : src/main/resources
log4jdbc.spylogdelegator.name=net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator
log4jdbc.dump.sql.maxlinelength=0
datasource 설정
- 설정 파일 : application.yml
- driver-class-name 추가
- jdbc url 변경 : "log4jdbc:" 추가
spring:
datasource:
driver-class-name: net.sf.log4jdbc.sql.jdbcapi.DriverSpy
url: jdbc:log4jdbc:postgresql://localhost:5432/test
설정해준 뒤 실행시키면 파라미터가 세팅되지 않은 쿼리와 파라미터 값을 세팅한 쿼리로그가 찍힐 것이다.
관련 참고 게시글 : JPA 쿼리 로그 설정
728x90
반응형
'Database > MyBatis' 카테고리의 다른 글
[MyBatis] 동적 쿼리 <trim> 사용 방법 (0) | 2023.09.12 |
---|---|
[MyBatis] 중복 쿼리 줄여주는 sql, include, property 태그 문법 살펴보기 (3) | 2022.07.12 |
[MyBatis] For input string: "문자" 오류 해결방법 (1) | 2021.08.27 |
[MyBatis] List 파라메터 foreach 사용 (INSERT, DELETE) - MySQL (0) | 2020.09.15 |
[MyBatis] #{ } 과 ${ } 차이 (0) | 2020.09.04 |
댓글