Spring在web.xml文件中的配置

1. 初始化spring 容器:




       contextConfigLocation

       classpath:config/spring-context.xml

启动Web容器时,自动装配applicationContext.xml的配置信息,执行它所实现的方法。如果没有该文件,需在context-param 指定一个Spring容器的初始化配置文件,本例中是config/spring-context.xml



    org.springframework.web.context.ContextLoaderListener

配置Spring MVC,指定处理请求的Servlet。如果在DispatcherServle 这个servlet下没有去指定一个spring-servlet文件,那么会自动读取WEB-INF下的dispatcher-servlet.xml文件。



       dispatcher

       org.springframework.web.servlet.DispatcherServlet

       

              contextConfigLocation

              classpath:config/spring-servlet.xml

       

       1

       

指定分发匹配的url模式:

 
           

          dispatcher 

          / 

 

你可能感兴趣的:(spring)