`
bengan
  • 浏览: 204966 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

spring整合struts的3种配置方式

 
阅读更多
实例讲解spring整合struts的几种方式

1,使用Spring 的 ActionSupport

2, 使用Spring 的 DelegatingRequestProcessor 类。

3,全权委托。



无论用那种方法来整合第一步就是要为struts来装载spring的应用环境。 就是在 struts 中加入一个插件。

struts-config.xml中



<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">

  <set-property property="contextConfigLocation" value="/WEB-INF/applicationContext.xml"/>

</plug-in>



spring 的配置文件被作为参数配置进来。这样可以省略对web.xml 文件中的配置。确保你的applicationContext.xml 在WEB-INF目录下面



1,使用Spring的ActionSupport .

Spring 的ActionSupport 继承至 org.apache.struts.action.Action

ActionSupport的子类可以或得 WebApplicationContext类型的全局变量。通过getWebApplicationContext()可以获得这个变量。



这是一个 servlet 的代码:

public class LoginAction extends org.springframework.web.struts.ActionSupport {



public ActionForward execute(ActionMapping mapping, ActionForm form,

   HttpServletRequest request, HttpServletResponse response) {

  LoginForm loginForm = (LoginForm) form;// TODO Auto-generated method stub

                //获得  WebApplicationContext  对象            

  WebApplicationContext ctx = this.getWebApplicationContext();

  LoginDao dao = (LoginDao) ctx.getBean("loginDao");

  User u = new User();

  u.setName(loginForm.getName());

  u.setPwd(loginForm.getPwd());

  if(dao.checkLogin(u)){

   return mapping.findForward("success");

  }else{

   return  mapping.findForward("error");

  }

}

}



applicationContext.xml 中的配置

<beans>

<bean id="loginDao" class="com.cao.dao.LoginDao"/>

</beans>



这中配置方式同直接在web.xml文件配置差别不大。注意:Action继承自 org.springframework.web.struts.ActionSupport 使得struts和spring耦合在一起。

但实现了表示层和业务逻辑层的解耦(LoginDao dao = (LoginDao) ctx.getBean("loginDao"))。



2,使用Spring 的 DelegatingRequestProcessor 类

DelegatingRequestProcessor  继承自 org.apache.struts.action.RequestProcessor 并覆盖了里面的方法。

sturts-config.xml  中  <controller processorClass="org.springframework.web.struts.DelegatingRequestProcessor"/> 通过 <controller >来替代

                        org.apache.struts.action.RequestProcessor 的请求处理。



public class LoginAction extends Action {

//利用spring来注入这个对象。

private LoginDao dao ;



public void setDao(LoginDao dao) {

  System.out.println("执行注入");

  this.dao = dao;

}



public LoginDao getDao() {

  return dao;

}



public ActionForward execute(ActionMapping mapping, ActionForm form,

   HttpServletRequest request, HttpServletResponse response) {

  LoginForm loginForm = (LoginForm) form;// TODO Auto-generated method stub

  //这样一改这行代码似乎没有必要了。

  //WebApplicationContext ctx = this.getWebApplicationContext();

  //LoginDao dao = (LoginDao) ctx.getBean("loginDao");

  User u = new User();

  u.setName(loginForm.getName());

  u.setPwd(loginForm.getPwd());

  //直接用dao来调用spring会将这个对象实例化。

  if(dao.checkLogin(u)){

   return mapping.findForward("success");

  }else{

   return  mapping.findForward("error");

  }

}

}

这里的。

LoginAction extends Action 说明 struts 每有和spring 耦合。

看一下

applicationContext.xml 中的配置。

<beans>

<bean id="loginDao" class="com.cao.dao.LoginDao"/>

<bean name="/login" class="com.cao.struts.action.LoginAction">

  <property name="dao">

   <ref local="loginDao"/>

  </property>

</bean>

</beans>



这里 name="/login" 与struts 中的path匹配 class="com.cao.struts.action.LoginAction" 与struts 中的type匹配还要为 LoginAction 提供必要的setXXX方法。 获得ApplicationCotext和依赖注入的工作都在DelegatingRequestProcessor中完成。





3,全权委托:

Action 的创建和对象的依赖注入全部由IOC容器来完成。 使用Spring的DelegatingAcionProxy来帮助实现代理的工作

org.springframework.web.struts.DelegatingActiongProxy继承于org.apache.struts.action.Action .



全权委托的配置方式同 方式 2 类似 (applcationContext.xml文件的配置和Action类的实现方式相同)。

<struts-config>

  <data-sources />

  <form-beans >

    <form-bean name="loginForm" type="com.cao.struts.form.LoginForm" />

  </form-beans>



  <global-exceptions />

  <global-forwards />

<action-mappings >

    <!-- type指向的是spring 的代理类 -->

    <action

      attribute="loginForm"

      input="login.jsp"

      name="loginForm"

      path="/login"

      scope="request"

      type="org.springframework.web.struts.DelegatingActionProxy" >    

      <forward name="success" path="/ok.jsp" />

      <forward name="error" path="/error.jsp" />

    </action>



</action-mappings>

  <message-resources parameter="com.cao.struts.ApplicationResources" />

<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">

  <set-property property="contextConfigLocation" value="/WEB-INF/applicationContext.xml"/>

</plug-in>

</struts-config>

不同之处

1, <action>中 type指向的是spring 的代理类

2, 去掉struts-config.xml中 <controller >



三种整和方式中我们优先选用全权委托的方式。

理由:

1,第一种使得过多的耦合了Spring和Action .

2,RequestProcessor类已经被代理 如果要再实现自己的实现方式(如:编码处理)怕有点麻烦。



总结一下:

整合工作中的步骤:

1,修改struts-config.xml 

2, 配置applicationContext.xml

3, 为Action添加get/set方法 来获得依赖注入的功能。
分享到:
评论

相关推荐

    Spring + struts 整合的三种主要方式

    ### Spring与Struts整合的三种主要方式 在Java Web开发领域,Spring框架和Struts框架都是非常重要的技术。Spring框架以其强大的依赖注入(DI)和面向切面编程(AOP)功能,为Java应用提供了轻量级的解决方案。而...

    Spring+Struts+Hibernate比较详细的整合配置方案

    1. **Spring整合** - 在MyEclipse中添加Spring支持,选择相应的Spring版本和开发包,如Spring 1.2系列。 - 创建Spring配置文件(如`applicationContext.xml`),配置Bean定义,包括Service层、DAO层以及Action类等...

    Spring整合Struts

    另一种整合方式是通过继承Spring的ActionSupport类,这使得开发者能够显式地使用getWebApplicationContext()方法获取Spring管理的bean。这种方式更适用于那些需要深度集成Spring特性的场景,比如AOP或更复杂的依赖...

    struts和spring整合的2种方式

    在第一种整合方式中,Struts的`struts-config.xml`配置文件中,我们将`type`属性设置为`org.springframework.web.struts.DelegatingActionProxy`,这表示Struts的Action将由Spring来创建和管理。例如: ```xml ...

    Spring与Struts整合3种方式实例

    以下是三种整合 Spring 与 Struts 的方法的详细解释: 1. 通过 Spring 的 `ActionSupport` 类 这种方法是让 Struts 的 Action 类不再继承自 Struts 的 `Action` 类,而是继承 Spring 提供的 `ActionSupport` 类。...

    Spring整合集成Struts1.2最简单例子

    3. **整合集成的原因** 将Spring与Struts1.2整合,可以利用Spring的强大功能来管理Struts的Action和业务逻辑,提高代码的可测试性和可维护性。 4. **整合步骤** - **配置Spring**:首先创建Spring配置文件(如`...

    spring整合struts2与hibernate核心配置文件

    `struts2-spring-plugin.xml`配置Struts2与Spring的集成,确保Action类由Spring容器管理。`spring-context.xml`中,需要配置数据源、SessionFactory、事务管理器以及各业务层和DAO层的bean。Hibernate的`hibernate....

    Spring与Struts集成方式一

    - 创建Struts配置文件,例如`struts-config.xml`,定义Action类和ActionForm类。 - 配置Action和ActionForward,定义请求的处理流程。 3. **集成步骤**: - 在Struts的Action类中,通过Spring的`@Autowired`注解...

    spring4 struts2 mybatis3 maven3 整合

    MyBatis与Spring整合可以实现事务管理,提供动态SQL支持,并且可以方便地通过Spring的数据源配置,实现数据库连接的管理。 **Maven 3** 是一个项目管理和综合工具,通过POM(Project Object Model)文件管理项目的...

    spring3.2.6struts2.3.15MyBatis3整合DEMO

    《Spring 3.2.6、Struts 2.3.15与MyBatis 3整合实战详解》 在Java Web开发领域,Spring、Struts和MyBatis是三大主流框架,它们各自承担着不同的职责,共同构建了一个强大的企业级应用开发环境。本DEMO以Spring ...

    spring与struts2整合

    Spring 和 Struts2 是两个...总之,Spring 和 Struts2 的整合利用了两者的优势,提供了一种强大的方式来构建可扩展、易于维护的 Java Web 应用。通过深入学习和实践,开发者可以掌握这种整合技巧,并在实际项目中应用。

    整合Spring与Struts的几种方法

    3. **使用DelegatingActionProxy代理Action**:在`struts-config.xml`中,所有Action的type属性改为`DelegatingActionProxy`,而非具体类名,然后在Spring配置文件中定义对应的bean。这是最灵活的整合方式,因为它...

    Spring 和struts 整合的三种方式

    这种整合方式通常用于Struts 2,也称为“Spring-Struts 2集成”。在这种模式下,Struts 2完全依赖于Spring来管理Action。首先,我们需要在Struts 2的配置文件(struts.xml)中启用Spring插件: ```xml ...

    Spring 和 struts 整合的三种方式

    以下将详细阐述Spring与Struts整合的三种方式: 1. **使用Spring的ActionSupport** 这种方式是通过让Struts的Action类继承Spring的`ActionSupport`类,使Action类能够访问Spring的ApplicationContext。首先,在`...

    Spring+Struts2+hibernate+Redis整合

    在IT行业中,SSH(Spring、Struts2、Hibernate)是一个经典的Java Web开发框架组合,而Redis则是一个高性能的键值存储系统,常用于缓存和数据持久化。将SSH与Redis整合,可以提升应用程序的性能和响应速度。下面将...

    spring和struts整合的三种方案

    在实际应用中,第一种和第二种方案通常用于初始化 Spring 容器,而第三种方案则更深入地将 Spring 的功能集成到 Struts 请求处理流程中。然而,使用 `ActionSupport` 类(方法一)会使得 Struts Action 与 Spring ...

    ssh框架整合详细步骤(spring+struts2+hibernate)

    ##### 第一部分:Web工程集成Struts2框架 **Step01:创建Web工程** - 在开发环境中创建一个新的Web工程,如Eclipse或IntelliJ IDEA中通过New -&gt; Web Project创建。 **Step02:完成Web工程与Struts2的整合开发** -...

    Spring与Struts2整合

    3. **整合Struts2-Spring插件** 引入Struts2的Spring插件,该插件使得Spring管理的Action类可以在Struts2中直接使用。在struts.xml配置文件中启用该插件。 4. **Action类的配置** 创建Spring管理的Action类,通常...

    Spring+hibernate+struts2整合配置详解

    6. **配置Struts2-Spring整合** - 添加Spring插件`struts2-spring-plugin-x.x.x.jar`到项目的类路径。 - 在`struts.xml`中使用`&lt;package&gt;`元素的`namespace`属性来区分不同模块,避免命名冲突。 - 配置Action类,...

    Spring与Struts 2整合.zip

    3. **配置Struts 2**:在struts.xml中配置Action,将Spring管理的Bean注入到Action中。可以使用`&lt;spring:bean&gt;`标签或`struts-plugin.xml`中的`&lt;struts:spring-plugin&gt;`来实现Action的Spring托管。 4. **事务管理**...

Global site tag (gtag.js) - Google Analytics