指定spring配置文件的位置

阅读更多
本文使用的是spring3.1.0, 主要讲解spring的配置文件默认位置和指定spring配置文件的位置。

1、默认位置

A) 默认mvc配置文件
在web.xml文件中配置:
 
 
    annomvc 
    org.springframework.web.servlet.DispatcherServlet     
 
 
    annomvc 
    / 
 

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

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

 
 
    org.springframework.web.context.ContextLoaderListener 
 

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

2) 指定配置文件位置

A)修改mvc配置文件位置
要修改mvc配置文件的位置,需要在配置DispatcherServlet时指定mvc配置文件的位置。比如想要把annomvc- servlet.xml放到src/config/annomvc-servlet.xml,则需要在配置DispatcherServlet时指 定标签。具体代码如下:

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

B)修改其他配置文件位置

要修改除mvc配置文件之外的其他bean的配置文件位置,需要在web.xml中加入标签,并指定具 体位置。我们有三个配置文件(service-context.xml, persistence-context.xml, datasource-context.xml)他们都位于src/config/文件夹下,那么配置代码如下:
 
 
    org.springframework.web.context.ContextLoaderListener 
 
 
    contextConfigLocation 
     
        classpath:config/service-context.xml 
        classpath:config/persistence-context.xml 
        classpath:config/datasource-context.xml 
       
 

你可能感兴趣的:(spring,配置文件,位置)