欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springmvc配置文件的三种放置路径

程序员文章站 2022-05-29 17:09:43
...

springmvc配置文件的三种存放位置,以及对应的web.xml读取配置文件 的方式#

1.放在WEB-INF下

1).要求配置文件的名称必须为:XXX-servlet.xml
2).web.xml在读取配置文件的时候回默认寻找改文件

2.放在src即类路径下

1).配置文件的名称任意
2).web.xml中需要配置以下标签
<init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:springmvc.xml</param-value>
 </init-param>

3.放在和src同级的自定义包config下

1).配置文件的名称任意
2).需要将config包mark directory as Resource Root
3).web.xml中需要配置以下标签(同上)
<init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:springmvc.xml</param-value>
 </init-param>