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

Spring整合struts的配置文件存放问题

程序员文章站 2023-02-18 18:53:38
只使用Spring的时候,我把applicationContext.xml是放在项目的src路径下的,这样使用ClassPathXmlApplicationContext很方便嘛 整合了struts之后,就读取不到这个配置文件了,因为Spring会到WEB-INF下来找配置文件, Spring配置文 ......

只使用spring的时候,我把applicationcontext.xml是放在项目的src路径下的,这样使用classpathxmlapplicationcontext很方便嘛

整合了struts之后,就读取不到这个配置文件了,因为spring会到web-inf下来找配置文件,

spring配置文件的名称并不固定,那应该是有地方可以配置配置文件的路径的

就是在web.xml里面

1  <!-- 声明spring配置文件名称和所放的位置 --> 
2 <context-param>
3 <param-name>contextconfiglocation</param-name>
4  <param-value>classpath:applicationcontext.xml</param-value>
5 </context-param>

 这样配置文件不用改位置,也可读取到啦

Spring整合struts的配置文件存放问题

注:版本是spring 5.1.3;struts2.5.18