您好,登錄后才能下訂單哦!
這篇文章主要介紹“Java中Structs框架的原理”,在日常操作中,相信很多人在Java中Structs框架的原理問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Java中Structs框架的原理”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
1 Struts2框架內(nèi)部執(zhí)行過程
Structs請求過程源碼分析參考鏈接http://www.cnblogs.com/liuling/p/2013-8-10-01.html
從上圖來看,整個框架的運(yùn)行過程是圍繞著核心過濾器StrutsPrepareAndExecuteFilter展開工作,深入到filter的源碼會對理解有所幫助。
一個請求在Struts的處理中大概有以下幾個步驟:
客戶端初始化一個指向Servlet容器(Tomcat)的請求;
這個請求經(jīng)過一系列的過濾器(Filter)例如ActionContextCleanUp的可選過濾器;
接著StrutsPrepareAndExecuteFilter被調(diào)用,StrutsPrepareAndExecuteFilter詢問ActionMapper來決定這個請求是否需要調(diào)用某個Action;
ActionMapper決定調(diào)用哪個Action,FilterDispatcher把請求的處理交給ActionProxy;
ActionProxy通過Configuration Manager詢問框架的配置文件,找到需要調(diào)用的Action類;
ActionProxy創(chuàng)建一個ActionInvocation的實(shí)例。
ActionInvocation實(shí)例使用命名模式來調(diào)用,在調(diào)用Action的過程前后,涉及到相關(guān)攔截器(Intercepter)的調(diào)用。
一旦Action執(zhí)行完畢,ActionInvocation負(fù)責(zé)根據(jù)struts.xml中的配置找到對應(yīng)的返回結(jié)果。返回結(jié)果通常是(但不總是,也可能是另外的一個Action鏈)一個需要被表示的JSP或者FreeMarker的模版。在表示的過程中可以使用Struts2 框架中繼承的標(biāo)簽。在這個過程中需要涉及到ActionMapper。
Structs的核心功能就是將請求委托給哪個Action處理。
到structs2官網(wǎng)上下載Structs-src.zip源文件,將其解壓
定位到:E:\structs2源碼\struts-2.5.20\src\core\src\main\java\org\apache\struts2查看源文件
有關(guān)包的說明:
org.apache.struts2. components 該包封裝視圖組件,Struts2在視圖組件上有了很大加強(qiáng),不僅增加了組件的屬性個數(shù),更新增了幾個非常有用的組件,如updownselect、doubleselect、datetimepicker、token、tree等。另外,Struts2可視化視圖組件開始支持主題(theme),缺省情況下,使用自帶的缺省主題,如果要自定義頁面效果,需要將組件的theme屬性設(shè)置為simple。
org.apache.struts2. config
該包定義與配置相關(guān)的接口和類。實(shí)際上,工程中的xml和properties文件的讀取和解析都是由WebWork完成的,Struts只做了少量的工作。
org.apache.struts2.dispatcher
Struts2的核心包,最重要的類都放在該包中。
org.apache.struts2.impl
該包只定義了3個類,他們是StrutsActionProxy、StrutsActionProxyFactory、StrutsObjectFactory,這三個類都是對xwork的擴(kuò)展。
org.apache.struts2.interceptor
定義內(nèi)置的截攔器。
org.apache.struts2.servlet
用HttpServletRequest相關(guān)方法實(shí)現(xiàn)principalproxy接口。
org.apache.struts2.util
實(shí)用包
org.apache.struts2.views
提供freemarker、jsp、velocity等不同類型的頁面呈現(xiàn)
根目錄下的5個文件說明:
StrutsStatics
Struts常數(shù)。常數(shù)可以用來獲取或設(shè)置對象從行動中或其他集合。
RequestUtils
請求處理程序類。此類只有一個方法getServletPath,作用檢索當(dāng)前請求的servlet路徑
ServletActionContext
網(wǎng)站的特定的上下文信息
StrutsConstants
該類提供了框架配置鍵的中心位置用于存儲和檢索配置設(shè)置。
StrutsException
通用運(yùn)行時異常類
(1)Structs2請求過程源碼分析:
Struts框架都會在web.xml中注冊和映射structs2,配置內(nèi)容如下:
<filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
StrutsPrepareAndExecuteFilter中的方法:
void init(FilterConfig filterConfig) 繼承自Filter,過濾器的初始化
doFilter(ServletRequest req, ServletResponse res, FilterChain chain) 繼承自Filter,執(zhí)行過濾器
void destroy() 繼承自Filter,用于資源釋放
void postInit(Dispatcher dispatcher, FilterConfig filterConfig) Callback for post initialization(一個空的方法,用于方法回調(diào)初始化)
web 容器一啟動,就會初始化核心過濾器StrutsPrepareAndExecuteFilter,并且執(zhí)行初始化方法,初始化方法如下:
public void init(FilterConfig filterConfig) throws ServletException { InitOperations init = new InitOperations(); Dispatcher dispatcher = null; try { //封裝filterConfig,其中有個主要方法getInitParameterNames將參數(shù)名字以String格式存儲在List中 FilterHostConfig config = new FilterHostConfig(filterConfig); //初始化struts內(nèi)部日志 init.initLogging(config); //創(chuàng)建dispatcher ,并初始化 dispatcher = init.initDispatcher(config); init.initStaticContentLoader(config, dispatcher); //初始化類屬性:prepare 、execute prepare = new PrepareOperations(filterConfig.getServletContext(), dispatcher); execute = new ExecuteOperations(filterConfig.getServletContext(), dispatcher); this.excludedPatterns = init.buildExcludedPatternsList(dispatcher); //回調(diào)空的postInit方法 postInit(dispatcher, filterConfig); } finally { if (dispatcher != null) { dispatcher.cleanUpAfterInit(); } init.cleanup(); } }
關(guān)于封裝filterConfig,首先看一下FilterHostConfig,源碼如下:
public class FilterHostConfig implements HostConfig { private FilterConfig config; //構(gòu)造方法 public FilterHostConfig(FilterConfig config) { this.config = config; } //根據(jù)init-param配置的param-name獲取param-value的值 public String getInitParameter(String key) { return config.getInitParameter(key); } //返回初始化參數(shù)名的迭代器 public Iterator<String> getInitParameterNames() { return MakeIterator.convert(config.getInitParameterNames()); } //返回Servlet上下文 public ServletContext getServletContext() { return config.getServletContext(); } }
getInitParameterNames是這個類的核心,主要功能就是將Filter初始化參數(shù)名稱有枚舉類型轉(zhuǎn)化為Iterator。
接下來,看下StrutsPrepareAndExecuteFilter中init方法中dispatcher = init.initDispatcher(config);這是初始化dispatcher的,是通過init對象的initDispatcher方法來初始化的,init是InitOperations類的對象,我們看看InitOperations中initDispatcher方法:
public Dispatcher initDispatcher( HostConfig filterConfig ) { Dispatcher dispatcher = createDispatcher(filterConfig); dispatcher.init(); return dispatcher; }
創(chuàng)建Dispatcher 會讀取filterConfig(核心過濾器中最下面以一個)中的配置信息,將配置信息解析出來,封裝成為一個Map,然后根據(jù)上下文和參數(shù)Map構(gòu)建Dispatcher(見源文件Struts2的核心包,最重要的類都放在該包中)
private Dispatcher createDispatcher( HostConfig filterConfig ) { //存放參數(shù)的Map Map<String, String> params = new HashMap<String, String>(); //將參數(shù)存放到Map for ( Iterator e = filterConfig.getInitParameterNames(); e.hasNext(); ) { String name = (String) e.next(); String value = filterConfig.getInitParameter(name); params.put(name, value); } //根據(jù)servlet上下文和參數(shù)Map構(gòu)造Dispatcher return new Dispatcher(filterConfig.getServletContext(), params); }
dispatcher對象創(chuàng)建完成,接著就是dispatchar對象的初始化,打開Dispatcher類,看到它的init方法如下:
public void init() { if (configurationManager == null) { configurationManager = createConfigurationManager(BeanSelectionProvider.DEFAULT_BEAN_NAME); } try { init_FileManager(); //加載org/apache/struts2/default.properties init_DefaultProperties(); // [1] //加載struts-default.xml,struts-plugin.xml,struts.xml init_TraditionalXmlConfigurations(); // [2] init_LegacyStrutsProperties(); // [3] //用戶自己實(shí)現(xiàn)的ConfigurationProviders類 init_CustomConfigurationProviders(); // [5] //Filter的初始化參數(shù) init_FilterInitParameters() ; // [6] init_AliasStandardObjects() ; // [7] Container container = init_PreloadConfiguration(); container.inject(this); init_CheckWebLogicWorkaround(container); if (!dispatcherListeners.isEmpty()) { for (DispatcherListener l : dispatcherListeners) { l.dispatcherInitialized(this); } } } catch (Exception ex) { if (LOG.isErrorEnabled()) LOG.error("Dispatcher initialization failed", ex); throw new StrutsException(ex); } }
Structs請求過程源碼分析參考鏈接http://www.cnblogs.com/liuling/p/2013-8-10-01.html
Structs 配置文件加載循序:
3 默認(rèn)攔截器
struts-default.xml配置文件中定義了一個默認(rèn)攔截器棧,這些攔截器就是動作方法執(zhí)行之前的要執(zhí)行的。常用的有封裝用戶表單數(shù)據(jù)到j(luò)avabean的modelDriven攔截器,用于輸入驗(yàn)證的validation攔截器,等等
4 view和controller之間的交互
從視圖頁面每次發(fā)來的用戶請求會產(chǎn)生一些數(shù)據(jù),每次動作類執(zhí)行之前,核心過濾器StrutsPrepareAndExecuteFilter都會創(chuàng)建兩個對象:ActionContext和ValueStack,這兩個對象儲蓄了動作訪問期間用到的所有數(shù)據(jù)。這些數(shù)據(jù)又可以在JSP界面上通過stuct標(biāo)簽和OGNL表達(dá)式來取得。
ActionContext是一個map數(shù)據(jù)結(jié)構(gòu),其中的key是一些常見的域?qū)ο螅╝pplication,session,request等),而value又是一個map。也就是說ActionContext是一個大的map包裹著一些小map。
ValueStack是一個ArrayList數(shù)據(jù)結(jié)構(gòu),并且是一個棧結(jié)構(gòu),每次都在棧頂存取數(shù)據(jù)。
5 Controller與Model之間的交互
C與M之間的交互比較簡單,利用Structs框架提供的攔截器:ModelDriven,即可實(shí)現(xiàn)將用戶表單提交的數(shù)據(jù)封裝到對應(yīng)的javabean中。要點(diǎn):
javabean類自己編寫。
動作實(shí)現(xiàn)ModelDriven接口。
實(shí)現(xiàn)抽象方法getModel()。
到此,關(guān)于“Java中Structs框架的原理”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。