일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- github
- 라즈베리파이
- log4j2
- git
- mybatis
- STS
- datasource
- bitbucket
- python 개발환경
- oracle
- between 날짜
- MySQL
- hikaricp
- template
- Spring
- between date
- Gradle
- springboot
- Spring Boot
- hikari
- intellij
- Java
- Linux
- log4j profile
- ORACLE CLOUD
- Spring Security
- oracle between
- 배열스트링
- ubuntu
- catalina log
Archives
- Today
- Total
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- github
- 라즈베리파이
- log4j2
- git
- mybatis
- STS
- datasource
- bitbucket
- python 개발환경
- oracle
- between 날짜
- MySQL
- hikaricp
- template
- Spring
- between date
- Gradle
- springboot
- Spring Boot
- hikari
- intellij
- Java
- Linux
- log4j profile
- ORACLE CLOUD
- Spring Security
- oracle between
- 배열스트링
- ubuntu
- catalina log
Archives
- Today
- Total
파워노트
mybatis query log 찍기 (log4j2) [권장] 본문
반응형
역시 레퍼런스는 원조를 참고 하자.
- mybatis 로그 찍기가 잘 되지 않는다... 뭔가 이상하다..
- 이전에 로그를 위한 라이브러리 설정을 통해 진행시 뭔가 에러가 자꾸 발생한다.
2022.01.07 - [spring boot] - mybatis query log 찍기
- https://mybatis.org/mybatis-3/logging.html 여기를 참고 하자.
log4j2 설정.
- pom.xml
<dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.x.x</version> </dependency>
- log4j2.xml
<?xml version="1.0" encoding="UTF-8"?> <Configuration xmlns="http://logging.apache.org/log4j/2.0/config"> <Appenders> <Console name="stdout" target="SYSTEM_OUT"> <PatternLayout pattern="%5level [%t] - %msg%n"/> </Console> </Appenders> <Loggers> <Logger name="org.mybatis.example.BlogMapper" level="trace"/> <Root level="error" > <AppenderRef ref="stdout"/> </Root> </Loggers> </Configuration>
- 여기서 핵심은..
- org.mybatis.example.BlogMapper : 각 프로젝트에서 사용될 Mapper 패키지를 작성하시면 됩니다.
- level="trace"
로그확인
- Mapper 에서 실행한 쿼리문이 보인다.
마무리
- 로그를 찍기위해 여러 로깅을 위한 라이브러리 등을 포함했었는데...그러지 않아도 되었다...
- 항상 원조 레퍼런스를 참고하는 버릇을 가지자.
반응형
'spring boot' 카테고리의 다른 글
spring security 중복로그인 방지 처리 안될때. (3) | 2022.01.23 |
---|---|
mybatis query log 찍기 (0) | 2022.01.07 |
security 를 이용한 로그인시 authentication and session (0) | 2022.01.07 |
이유 없이 controller 유입이 두번씩 될때.. favicon 404 (0) | 2022.01.07 |
[ skeleton ] spring boot exception ( 예외 처리 ) (0) | 2021.11.28 |
Comments