spring配置文件的路径

一、springmvc配置文件:

在web.xml文件中配置:

<servlet>

    <servlet-name>springmvc</servlet-name>

    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

</servlet>

<servlet-mapping>

    <servlet-name>springmvc</servlet-name>

    <url-pattern>/<url-pattern>

</servlet-mapping>

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


二、其它配置文件:

在web.xml配置文件中:

<listener>

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

</listener>

默认查找的配置文件路径:/WEB-INF/applicationContext.xml.


三、修改mvc配置文件的位置

要修改mvc配置文件的位置,需要在配置DispatcherServlet时指定mvc配置文件的位置。比如想要把annomvc- servlet.xml放到src/config/annomvc-servlet.xml,则需要在配置DispatcherServlet时指 定<init-param>标签

<servlet> 

    <servlet-name>annomvc</servlet-name>  

    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  

    <init-param>  

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

        <param-value>classpath:config/annomvc-servlet.xml</param-value>  

    </init-param>  

</servlet>  

<servlet-mapping>  

    <servlet-name>annomvc</servlet-name>  

    <url-pattern>/</url-pattern>  

</servlet-mapping>  

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

<!-- context load listener -->  

<listener>  

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

</listener>  

<context-param>  

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

<param-value>  

          classpath:config/service-context.xml  

        classpath:config/persistence-context.xml  

        classpath:config/datasource-context.xml  

  </param-value>  

</context-param>

classpath*:app*.xml 这样只能找到classpath下的app开头*.xml结尾的配置文件  效果和classpath:app*.xml一样,jar中的会被忽略。

参考:http://name327.iteye.com/blog/1628884



你可能感兴趣的:(spring配置文件的路径)