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 展开
这样配置对么?
<?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 展开
5个回答
展开全部
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目录下即可。
如:
/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 广告
2024-11-19 广告
启帆信息是英伟达中国区代理商,原厂授权代理,提供全面的软件技术解决方案以及NVIDIA以太网产品、交换机等产品,欢迎前来咨询!...
点击进入详情页
本回答由启帆信息提供
展开全部
一般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>
我把spring配置文件放在了classes目录下边,然后在struts配置文件中这样配置
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="/WEB-INF/classes/applicationContext.xml" />
</plug-in>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一般struts与spring整合时,都是将spring最为插件整合到struts中
我把spring配置文件放在了classes目录下边,然后在struts配置文件中这样配置
我把spring配置文件放在了classes目录下边,然后在struts配置文件中这样配置
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<?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文件夹下就对了
<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文件夹下就对了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
放的位置对着的,是前面的context-param位置标错了吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询