2012년 1월 6일 금요일

스프링 시큐리티 용 e.g) applicationContext-security.xml 는 ContextLoaderListener를 이용해 등록

스프링 시큐리티 용 e.g) applicationContext-security.xml 는 ContextLoaderListener를 이용해 등록 해줘야 한다. 앙그러면 no webApplicationContext 어쩌구 저쩌구 에러 난다.

<context-param>    
    <description>The Spring configuration files.</description>     
    <param-name>
        contextConfigLocation
    </param-name>     
    <param-value>/WEB-INF/spring/applicationContext-*.xml</param-value> 
</context-param>  

<listener>     
    <description>The Spring context listener.</description>     
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>

댓글 없음: