成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

實(shí)例說(shuō)明如何集成Spring和Struts

開(kāi)發(fā) 后端
使用Spring的ActionSupport和ContextLoaderPlugIn是一種高效簡(jiǎn)單集成Struts的方法。本文簡(jiǎn)單介紹了Spring和Struts,以及集合的各種利弊,并詳細(xì)介紹了使用使用Spring的ActionSupport和ContextLoaderPlugIn的集成方法。

本文想通過(guò)一個(gè)簡(jiǎn)單的實(shí)例闡述如何集成Spring和Struts。

1.Struts和Spring

Struts 代表了MVC第二類架構(gòu)的實(shí)現(xiàn),在Struts中最重要的組件是ActionServlet,Action和 ActionForm 子類,ActionServlet 代表controller,他基于配置文件接受請(qǐng)求和 把這些請(qǐng)求轉(zhuǎn)發(fā)到相應(yīng)的ActionForm和Action子類。 ActionForm把用戶輸入的數(shù)據(jù)傳送到Action,Action調(diào)用商務(wù)層組件完成必要的操作,***提交到view。ActionServlet使用一個(gè)配置文件(struts-config.xml)加載Action子類的定義用以接受用戶請(qǐng)求,基于請(qǐng)求URL, controller 找到一個(gè)action定義去接受這個(gè)請(qǐng)求,Struts構(gòu)件處理用戶請(qǐng)求, 檢查配置文件, 完成相應(yīng)的動(dòng)作。

Spring是一種輕量級(jí)的容器,它使得使用一個(gè)外部XML配置文件非常容易綁定對(duì)象,每個(gè)對(duì)象能夠通過(guò)列出JavaBean屬性得到一個(gè)依賴 對(duì)象的指針,通過(guò)綁定XML配置文件使剩下的工作更加簡(jiǎn)單。依賴注入(DI)是非常強(qiáng)大的功能,Spring支持可插拔的事務(wù)管理器,提供事物管理方式更 多的選擇. 它集成了持久性的架構(gòu)同時(shí)也提供了一個(gè)統(tǒng)一的exception 分類,Spring也提供面向方面(AOP)編程的簡(jiǎn)單機(jī)制。

2.Struts和Spring的集成

將Struts應(yīng)用集成到Spring框架可以采用多種方法,首先Spring明顯地被設(shè)計(jì)用于解決JEE的現(xiàn)實(shí)問(wèn)題,如復(fù)雜性,性能低下,可測(cè)試性及其他;第二,Spring框架包括一個(gè)AOP實(shí)現(xiàn)讓你可以使用面向方面的程序設(shè)計(jì)技術(shù);第三, Spring 框架可以能夠非常容易地管理和協(xié)調(diào)Struts;和Struts類似,Spring也包含MVC 實(shí)現(xiàn),兩個(gè)架構(gòu)都有優(yōu)缺點(diǎn),Struts是MVC最重要的架構(gòu),很多開(kāi)發(fā)團(tuán)隊(duì)學(xué)會(huì)了依靠Struts在規(guī)定時(shí)限內(nèi)開(kāi)發(fā)出高質(zhì)量的軟件,因此開(kāi)發(fā)團(tuán)隊(duì)寧愿 集成Spring的功能也不愿意轉(zhuǎn)到Spring MVC;好消息是Spring的結(jié)構(gòu)允許你集成Struts Web 框架、基于Spring的業(yè)務(wù)層和持久層,我們的方法是應(yīng)用Spring中的ActionSupport類去集成Struts。

3.加載應(yīng)用的context

首先我們需要使用Spring中的ContextLoaderPlugin為Struts ActionServlet去裝載Spring應(yīng)用的上下文,簡(jiǎn)單在struts-config.xml 文件中增加plug-in,如下(1)所示:

﹤ ?xml version="1.0" encoding="ISO-8859-1" ?﹥

﹤ !DOCTYPE struts-config PUBLIC

"-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"

"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd"﹥

﹤ struts-config﹥

﹤ form-beans﹥

﹤ form-bean name="searchForm"

type="org.apache.struts.validator.DynaValidatorForm"﹥

﹤ form-property name="cardno" type="java.lang.String"/﹥

﹤ /form-bean﹥

﹤ /form-beans﹥

﹤ global-forwards type="org.apache.struts.action.ActionForward"﹥

﹤ forward name="welcome" path="/welcome.do"/﹥

﹤ forward name="searchEntry" path="/searchEntry.do"/﹥

﹤ forward name="searchSubmit" path="/searchSubmit.do"/﹥

﹤ /global-forwards﹥

﹤ action-mappings﹥

﹤ action path="/welcome" forward="/WEB-INF/pages/welcome.htm"/﹥

﹤ action path="/searchEntry" forward="/WEB-INF/pages/search.jsp"/﹥

﹤ action path="/searchSubmit"

type=" com.infotek.Creditcard.actions.SearchSubmit"

input="/searchEntry.do"

validate="true"

name="searchForm"﹥

﹤ forward name="success" path="/WEB-INF/pages/detail.jsp"/﹥

﹤ forward name="failure" path="/WEB-INF/pages/search.jsp"/﹥

﹤ /action﹥

﹤ /action-mappings﹥

﹤ message-resources parameter="ApplicationResources"/﹥

﹤ plug-in className="org.apache.struts.validator.ValidatorPlugIn"﹥

﹤ set-property property="pathnames" value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/﹥

﹤ /plug-in﹥

﹤ plug-in className="org.springframework.web.struts.ContextLoaderPlugIn"﹥ (1)

﹤ set-property property="contextConfigLocation" value="/WEB-INF/beans.xml"/﹥

﹤ /plug-in﹥

﹤ /struts-config﹥

 

4.使用Spring的ActionSupport類

要用Spring去集成Struts,創(chuàng)建一個(gè)Spring 上下文是必須要做的。 org.springframework.web.struts.ActionSupport 類提供一個(gè) getWebApplicationContext() 方法非常容易地獲得Spring上下文,全部你需要去做的是從Spring的ActionSupport 代替Struts 中的Action類去延伸你的action,如下所示:

package com.infotek.Creditcard.actions;

import java.io.IOException;

import javax.servlet.ServletException;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.ActionError;

import org.apache.struts.action.ActionErrors;

import org.apache.struts.action.ActionForm;

import org.apache.struts.action.ActionForward;

import org.apache.struts.action.ActionMapping;

import org.apache.struts.action.DynaActionForm;

import org.springframework.context.ApplicationContext;

import org.springframework.web.struts.ActionSupport;

import com. infotek.Creditcard.beans.Creditcard;

import com. infotek.Creditcard.business.CreditcardService;

public class SearchSubmit extends ActionSupport { |(1)

public ActionForward execute(ActionMapping mapping,ActionForm form,

HttpServletRequest request,HttpServletResponse response)

throws IOException, ServletException {

DynaActionForm searchForm = (DynaActionForm) form;

String isbn = (String) searchForm.get("cardno");

//the old fashion way

//CreditcardService creditcardService = new CreditcardServiceImpl();

ApplicationContext ctx = getWebApplicationContext(); |(2)

CreditcardService creditcardService =

(CreditcardService ) ctx.getBean("creditcardService"); |(3)

CreditCard creditard = CreditCardService.read(cardno.trim());

if (null == creditard) {

ActionErrors errors = new ActionErrors();

errors.add(ActionErrors.GLOBAL_ERROR,new ActionError ("message.notfound"));

saveErrors(request, errors);

return mapping.findForward("failure") ;

}

request.setAttribute("creditcard", creditcard);

return mapping.findForward("success");

}

}

 

在(1)中,我們通過(guò)延伸Spring ActionSupport 類而不是Struts Action 類創(chuàng)建了一個(gè)action;在(2)中,我們使用getWebApplicationContext()方法獲得一個(gè) ApplicationContext;為了獲得商務(wù)服務(wù), 在(3)中,我們使用ApplicationContext去查找Spring bean;這個(gè)技術(shù)非常容易理解,不幸的是它把Struts的action和Spring framework綁定了,如果你想替換Spring你不得不重寫代碼,而且Struts的action不在Spring的控制之下, 遺憾的是這種方法無(wú)法獲得Spring AOP的好處。

5.結(jié)論

本文我們嘗試使用Spring的ActionSupport,ContextLoaderPlugIn去集成Struts,這是一種***效的和最簡(jiǎn)單的方式,另外還可用Spring中的代理子類去代理Struts中的RequestProcessor和代理Struts的actions。

【編輯推薦】

  1. 淺談Struts+Hibernate+Spring的整合方法
  2. 基于OSGi和Spring開(kāi)發(fā)Web應(yīng)用
  3. 如何在Java Web應(yīng)用中獲取Spring的ApplicationContext
責(zé)任編輯:yangsai 來(lái)源: IT168
相關(guān)推薦

2009-06-18 15:56:49

Struts和Spri

2009-06-19 15:52:58

Struts和Spri

2009-06-26 17:15:44

Struts2

2009-06-30 17:03:49

Spring集成Str

2009-06-19 10:00:37

Struts和Spri

2009-07-17 17:45:56

iBATIS Spri

2009-06-19 15:28:03

SpringHibernate

2009-06-01 16:18:30

SpringJPA集成

2024-01-16 08:17:29

Mybatis驗(yàn)證業(yè)務(wù)

2009-06-10 14:53:25

netbeans st實(shí)例

2009-09-24 09:18:18

2009-06-05 10:46:12

struts logilogic標(biāo)簽

2009-06-23 13:21:26

JSF和Spring

2009-06-08 16:52:00

2009-06-03 09:16:03

Hibernate工作原理使用

2009-09-22 14:46:18

struts-spri

2020-07-14 11:00:12

Spring BootRedisJava

2009-06-05 11:01:23

struts mvcMVC工作原理

2009-07-15 13:11:25

ibatis動(dòng)態(tài)查詢

2009-07-20 16:51:59

Struts2.0+i
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)

主站蜘蛛池模板: 日本视频中文字幕 | 成人三级影院 | 久久亚洲一区二区三区四区 | 亚洲一区在线日韩在线深爱 | 国产日韩欧美激情 | 美女张开腿露出尿口 | 亚洲第一成年免费网站 | 国产激情在线播放 | 成人日b视频 | 欧美xxxx性| 国产日韩欧美中文字幕 | 国内精品一区二区三区 | 国产999精品久久久影片官网 | 黄色一级免费看 | 免费在线观看一区二区三区 | 最新黄色在线观看 | 成人午夜电影在线观看 | 欧美一级网站 | 色狠狠桃花综合 | 一区二区免费在线 | 欧美 日韩 在线播放 | 久久久一区二区三区 | av网站免费在线观看 | 亚洲欧洲成人在线 | 欧美综合一区二区三区 | 欧美性猛交一区二区三区精品 | av片网站 | 中文欧美日韩 | 天堂久久网 | 午夜久久久 | 91精品国产乱码久久久久久久久 | 久久久精品视 | 欧美国产精品一区二区三区 | 亚洲人精品午夜 | 国产99久久久久 | 日韩成人在线观看 | 福利精品| 日韩福利| 黄色一级视频 | 免费观看黄色一级片 | 蜜桃在线视频 |