展开全部
建议如下, 前提是如果你还是用struct 1.2的版本的话:
1. 在web.xml文件加入Spring的配置如下, 加入Spring对请求的监听和容器启动是加载配置文件:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
当然Struts的相关配置不能少。
<servlet>
<servlet-name>struts</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/classes/struts-config.xml</param-value>
</init-param>
</servlet>
2. 在struts中介绍两种方式和spring整合,其核心的思想都是当收到一个Action请求转交给spring框架去处理,Spring利用其IOC机制实现action类的依赖注入。
在struts-confiug.xml文件中加入:
(1) <controller processorClass="org.springframework.web.struts.AutowiringRequestProcessor" />
(2)<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn"> ...</plug-in>
下面在Spring的application-config.xml中加入Struts的action
希望以上建议对你有所帮助
1. 在web.xml文件加入Spring的配置如下, 加入Spring对请求的监听和容器启动是加载配置文件:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
当然Struts的相关配置不能少。
<servlet>
<servlet-name>struts</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/classes/struts-config.xml</param-value>
</init-param>
</servlet>
2. 在struts中介绍两种方式和spring整合,其核心的思想都是当收到一个Action请求转交给spring框架去处理,Spring利用其IOC机制实现action类的依赖注入。
在struts-confiug.xml文件中加入:
(1) <controller processorClass="org.springframework.web.struts.AutowiringRequestProcessor" />
(2)<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn"> ...</plug-in>
下面在Spring的application-config.xml中加入Struts的action
希望以上建议对你有所帮助
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询