본문으로 바로가기

뜬금없이 뜬 에러다. 해결했는데 해결한거 같지가 않다.

왜냐하면 다른 프로젝트들은 이렇게 안되어 있는데도 에러가 안떠있기 때문 ㅎ..



log4j:WARN No appenders could be found for logger (...).

log4j:WARN Please initialize the log4j system properly.



해결 방법 :

web.xml 에서

1
2
3
4
5
6
7
8
9
10
11
12
13
14
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    
    <!-- Creates the Spring Container shared by all Servlets and Filters -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
 
    <!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath*:spring/context-*.xml</param-value>
    </context-param>
cs

6~8행의 위치를 제일 위로 올리면 된다. 설정 파일들의 경로를 선언한 곳보다 위에 선언하면 된다.