Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Iterator
- 배열
- ip체크
- indexof
- Spring
- vi
- session
- 접속권한
- 새글
- 정해진기간동안
- lombok
- CentOS
- SAMBA
- 최대최소
- Timeout
- new
- Log4j
- java
- 톰캣
- new아이콘
- swagger
- tomcat
- String
- login
- 자바
- Interceptor
- 권한부여
- Linux
- springboot
Archives
- Today
- Total
목록Log4j (1)
Cheat Sheet
#Spring Boot #log4j
[ gradle ] //Log4j2 프레임워크의 종속성을 추가 dependencies { ... implementation 'org.springframework.boot:spring-boot-starter-log4j2' ... } //기존 자바 로깅 프레임워크인 logback의 종속성을 제거 configurations { compileOnly { extendsFrom annotationProcessor } //추가 all { exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' } } [ application.properties ] //추가 logging.level.jdbc.sqlonly=off logging.le..
Back End/프레임워크
2023. 9. 8. 13:25