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 5.1.3;struts2.5.18
上一篇: 浅谈Java虚拟机内存中的对象创建,内存布局,访问定位
下一篇: C#净化版WebApi框架
推荐阅读
-
Spring整合struts的配置文件存放问题
-
【原创】整合Spring4+Hibernate4+Struts2时NullPointerException问题解决
-
为什么整合Spring与Struts2的时候,必须定义Struts2 Bean的Scope
-
**Mybatis和Spring整合的时候 sqlSessionFactory出问题了!!求指点**
-
Spring整合Struts 2与Hibernate(基于XML配置的S2SH整合)
-
Spring整合ActiveMQ如果XSD文件不对导致Spring加载很慢的问题
-
Spring整合ActiveMQ如果XSD文件不对导致Spring加载很慢的问题
-
整合struts+spring+jpa中出现的解决方法
-
整合struts+spring+jpa中出现的解决方法
-
spring boot-2.1.16整合swagger-2.9.2 含yml配置文件的代码详解