spring

Spring 是一个开源框架,是为了解决企业应用程序开发复杂性而创建的。框架的主要优势之一就是其分层架构,分层架构允许您选择使用哪一个组件,同时为 J2EE 应用程序开发提供集成的框架。

Spring和struts 整合我发现了两种方法

1,使用Spring 的 ActionSupport

2,全权委托。

无论用那种方法来整合第一步就是要为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 wac = this.getWebApplicationContext();

 

  LoginDao dao = (LoginDao) wac.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.dao.LoginDao"/>

 </beans>

  

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

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

2,全权委托:

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

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

全权委托(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 >

  

你可能感兴趣的:(spring)