웹 & 프레임워크

컨트롤러와 모델의 설정 (configuration) 파일 분리

늘근이 2014. 5. 9. 11:29




원래 있던 web.xml에 beans.xml을 알아서 읽어오도록 설정을 해야한다.

web.xml은 자동완성이 불가능하기 때문에 철자를 잘 쳐야한다


                <!-- needed for ContextLoaderListener -->

                  <context-param>

                                   <param-name>contextConfigLocation</param-name>

                                   <param-value>classpath:beans.xml</param-value>

                  </context-param>

 

                  <!-- Bootstraps the root web application context before servlet initialization -->

                  <listener>

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

 

                  </listener>