指定spring配置文件的位置 ContextLoaderListener DispatcherServlet

  • 默认MVC配置文件

在web.xml文件中配置:

  
  
    annomvc  
    org.springframework.web.servlet.DispatcherServlet      
  
  
    annomvc  
    /  


指定Spring来处理请求的Servlet,默认查找mvc配置文件的地址是:/WEB-INF/${servletname}-servlet.xml,示例中默认查找的mvc配置文件是:/WEB-INF/annomvc-servlet.xml。

  
  
    annomvc  
    org.springframework.web.servlet.DispatcherServlet  
      
        contextConfigLocation  
        classpath:config/annomvc-servlet.xml  
      
  
  
    annomvc  
    /  
 


要修改mvc配置文件的位置,需要在配置DispatcherServlet时指定mvc配置文件的位置,只需要在配置DispatcherServlet时指定标签。

  • 其他配置文件

这里的其他配置文件,指的是对datasource的配置、persistence层的配置、service层的配置信息等。要加载其他配置文件,需要在web.xml配置文件中加入一个ContextLoaderListener监听器来配置。ContextLoaderListener只监听初始化除mvc相关配置之外的bean。

  
    org.springframework.web.context.ContextLoaderListener  
 

若没有指定其他参数,默认查找的配置文件位置是:/WEB-INF/applicationContext.xml。

  
  
    org.springframework.web.context.ContextLoaderListener  
  
  
    contextConfigLocation  
      
        classpath:config/service-context.xml  
        classpath:config/persistence-context.xml  
        classpath:config/datasource-context.xml  
          

 

要修改除mvc配置文件这之外的其他bean的配置文件位置,只需要在web.xml中加入标签。
 

  • ContextLoaderListener&ServletDispatcher

Spring中有两种上下文环境“Application Context”和“Web Application Context”,它们分别对应ContextLoaderListener和ServletDispatcher,且者可以用来配置bean的注入、装配、AOP。

 

1. ContextLoaderListener

 

ContextLoaderListener通过读取contextConfigLocatiion参数来读取配置参数,一般来说它配置的是Spring项目的中间层。对应到Spring的自动装配机制就是以下几种注解的装配。

(1) DAO : such as @Repository bean

(2) Entity : such as @Entity bean

(3)Service: such as @Service bean

 

2. ServletDispatcher

它配置的是Web层组件的注入、装配和AOP。

(1)Controller

(2)ViewResolvers

(3)LocaleResolvers

(4)ThemeResolvers

 

最后欢迎大家访问我的个人网站:1024s

你可能感兴趣的:(java,软件架构,秒扒Spring)