Spring整合struts的配置文件存放问题
程序员文章站
2022-05-21 10:53:29
只使用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 5.1.3;struts2.5.18
推荐阅读
-
Spring整合Struts2的两种方法小结
-
Mybatis整合Spring 由于版本引起的BUG问题
-
Spring 整合多个配置文件的方法
-
Spring 整合多个配置文件的方法
-
struts2 spring整合fieldError问题
-
Spring整合struts的配置文件存放问题
-
【原创】整合Spring4+Hibernate4+Struts2时NullPointerException问题解决
-
为什么整合Spring与Struts2的时候,必须定义Struts2 Bean的Scope
-
**Mybatis和Spring整合的时候 sqlSessionFactory出问题了!!求指点**
-
Spring整合Struts 2与Hibernate(基于XML配置的S2SH整合)