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>
上一篇: 排错指南 1.0