Spring整合Struts的两种方式介绍

本文介绍了Spring整合Struts的两种方式:一种是借助监听器启动Spring容器,Action由Spring创建和管理;另一种是自动装配方式,Action仍由Struts创建,Spring负责装配。推荐使用自动装配方式,因为它避免了配置冗余。在自动装配中,通过struts.objectFactory.spring.autoWire开启装配,Struts配置文件中的Action类与Spring配置文件中的BeanID关联,实现依赖注入。
摘要由CSDN通过智能技术生成

1、第一种方式

借助ServletContextListener监听器,该监听器可以在Web应用启动时回调自定义方法来启动Spring容器。
Spring提供了一个ContextLoaderListener,该监听器实现了ServletContextListener接口,它会在创建时自动加载WEB-INF下的applicationContext.xml文件。

<listener>
	<listener-class>
		org.springframework.web.context.ContextLoaderListener
	</listener-class>
</listener>

 

如果有多个配置文件需要载入,ContextLoaderListener加载时,会查找名为contextConfigLocation的初始化参数。

<!-- 指定多个配置文件 -->
<context-param>
	<!-- 参数名为contextConfigLocation -->
	<param-name>contextConfigLocation</param-name>
	<!-- 多个配置文件之间以“,”隔开 -->
	<param-value>
		/WEB-INF/daoContext.xml,
		/WEB-INF/applicationContext.xml
		classpath:applicationContext.xml
	</param-value>
</context-param>

直接在web.xml文件中配置创建Spring容器。

利用第三方MVC框架的扩展点,创建Spring容器。

该种方式就是将Struts Action也视为一种Bean交给Spring来进行托管,使用时Struts的配置文件中配置的Action的classs属性不再是具体Action的实现类,而是在Spring配置文件中配置的BeanID,也就是说具体是Action实现类是在Spring的配置文件中进行配置的,Struts的配置文件中的Class属性只是Spring文件中Bean的ID。Struts配置文件如下示例:

<action name="LoginAction" class="loginAction">

       <!--登录Action com.simpleworkflow.action.LoginAction-->

       <result name="input">/WEB-INF/content/login.jsp</result>

        <result name="mgr">/WEB-INF/content/manager/index.jsp</result>

        <result name="emp">/WEB-INF/content/employee/index.jsp</result>

        <result name="error">/WEB-INF/content/login.jsp</result>

</action>

同时需要在Struts配置文件中加入如下配置:

<struts>

    <constant n
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

amzpiper

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值