JAVA/SPRING

[SPRING] web.xml 보충설명

gracelove91 2019. 8. 10. 17:11

org.springframework.web.context.ContextLoaderListener

 <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>
  • ContextLoaderListener는 웹어플리케이션이 시작할 때 자동으로 루트 애플리케이션 컨텍스트를 만들고 초기화해준다.

ContextLoaderListener가 사용하는 디폴트 설정

  • XML 설정파일 위치 : /WEB-INF/applicationContext.xml
  • 애플리케이션 컨텍스트 클래스 : XmlWebApplicationContext

ContextLoaderListener 사용자정의

  • 사용자정의 XML 설정 위치
    <context-param>
      <param-name> contextConfigLocation </param-name>
      <param-value> /WEB-INF/applicationContext.xml </param-value>
    </context-param>
  • 사용자정의 애플리케이션 컨텍스트 클래스
    <context-param>
      <param-name>contextClass</param-name>
      <param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
    </context-param>