Struts2在与Spring整合的时候,applicationContext放在哪儿?

如题,我使用MyEclipse在整合Struts2和Spring的时候,applicationContext.xml文件放在了/WebRoot/WEB-INF/下,可是在... 如题,我使用MyEclipse在整合Struts2和Spring的时候,applicationContext.xml文件放在了/WebRoot/WEB-INF/下,可是在web.xml中配置好了后,启动Tomcat总是出现异常,说找不到applicationContext.xml,请问这个文件应该放在哪里?
这样配置对么?
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WebRoot/WEB-INF/applicationContext.xml
</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<filter>
<filter-name>Struts2Filter</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>Struts2Filter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
按照rihongedu所说的,可我的还是不行啊,好奇怪,能不能给我发下例子呢?谢谢了
我EMail:cuiyuesw@sina.com
展开
 我来答
百度网友b0aa63a27
推荐于2016-08-31 · TA获得超过674个赞
知道小有建树答主
回答量:541
采纳率:0%
帮助的人:543万
展开全部
contextConfigLocation配置的是哪里,就是哪里。上面的配置是不对的!

如:
/WEB-INF/applicationContext.xml就是在/WEB-INF文件夹下

classpath: applicationContext.xml就是放在你的源文件夹根目录下,最终是在/WEB-INF/classes文件夹下。

一句话就是,把/WebRoot/WEB-INF/applicationContext.xml 换成 /WEB-INF/applicationContext.xml,(前面不要加上下文根!), 然后把applicationContext.xml放到/WEB-INF目录下即可。
启帆信息
2024-11-19 广告
启帆信息是英伟达中国区代理商,原厂授权代理,提供全面的软件技术解决方案以及NVIDIA以太网产品、交换机等产品,欢迎前来咨询!... 点击进入详情页
本回答由启帆信息提供
mytel_789
2009-03-28 · TA获得超过606个赞
知道小有建树答主
回答量:338
采纳率:0%
帮助的人:342万
展开全部
一般struts与spring整合时,都是将spring最为插件整合到struts中
我把spring配置文件放在了classes目录下边,然后在struts配置文件中这样配置
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="/WEB-INF/classes/applicationContext.xml" />
</plug-in>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
恭梅英窦蔼
2019-11-20 · TA获得超过3万个赞
知道大有可为答主
回答量:1.1万
采纳率:35%
帮助的人:612万
展开全部
一般struts与spring整合时,都是将spring最为插件整合到struts中
我把spring配置文件放在了classes目录下边,然后在struts配置文件中这样配置
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
rihongedu
2009-03-30
知道答主
回答量:10
采纳率:0%
帮助的人:0
展开全部
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>asom</display-name>
<!-- 根据默认的配置文件来初试化spring 容器 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>struts-cleanup</filter-name>
<filter-class>org.apache.struts2.dispatcher.ActionContextCleanUp</filter-class>
</filter>
<filter-mapping>
<filter-name>struts-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>/index.action</welcome-file>
</welcome-file-list>
</web-app>
applicationContext.xml放在WEB-INF文件夹下就对了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xingjian22
2009-03-28 · TA获得超过159个赞
知道小有建树答主
回答量:151
采纳率:0%
帮助的人:211万
展开全部
放的位置对着的,是前面的context-param位置标错了吧。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式