Spring boot log4j2 셋팅 방법 정리
2024-02-23 1. 방법 build.gradle ... configurations { configureEach { //기본 스프링의 로그백과의 충돌 방지를 위해 제외시킨다. exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' } ... } ... dependencies { ... implementation "org.springframework.boot:spring-boot-starter-log4j2"; ... } ... application.properties ... #logging setting logging.config=classpath:log4j2/log4j2-local.xml ... log4j2-lo..