Spring Profiles Active Log4j 설정파일 위치 명시적으로 설정
업데이트:
Spring Profiles Active Log4j 설정파일 위치 명시적으로 설정
web.xml 수정
<context-param>
<param-value>log4jConfigLocation</param-value>
<param-value>classpath:log4j-${spring.profiles.active}.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>