欢迎来到天天文库
浏览记录
ID:6413641
大小:87.10 KB
页数:10页
时间:2018-01-13
《struts2核心工作流程与原理》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、struts2核心工作流程与原理收藏这是Struts2官方站点提供的Struts2的整体结构。一个请求在Struts2框架中的处理大概分为以下几个步骤:1.客户端提起一个(HttpServletRequest)请求,如上文在浏览器中输入”http://localhost:8080/TestMvc/add.action”就是提起一个(HttpServletRequest)请求。2.请求被提交到一系列(主要是三层)的过滤器(Filter),如(ActionContextCleanUp、其他过滤器(SiteMesh等)、FilterDispatcher)。注意这里是有顺序的,先Action
2、ContextCleanUp,再其他过滤器(SiteMesh等)、最后到FilterDispatcher。3.FilterDispatcher是控制器的核心,就是mvc中c控制层的核心。下面粗略的分析下我理解的FilterDispatcher工作流程和原理:FilterDispatcher进行初始化并启用核心doFilter其代码如下:1.publicvoiddoFilter(ServletRequestreq,ServletResponseres,FilterChainchain)throwsIOException,ServletException...{2.HttpServlet
3、Requestrequest=(HttpServletRequest)req;3.HttpServletResponseresponse=(HttpServletResponse)res;4.ServletContextservletContext=filterConfig.getServletContext();5.//在这里处理了HttpServletRequest和HttpServletResponse。6.DispatcherUtilsdu=DispatcherUtils.getInstance();7.du.prepare(request,response);//正如这个方
4、法名字一样进行locale、encoding以及特殊requestparameters设置8.try...{9.request=du.wrapRequest(request,servletContext);//对request进行包装10.}catch(IOExceptione)...{11.Stringmessage="CouldnotwrapservletrequestwithMultipartRequestWrapper!";12.LOG.error(message,e);13.thrownewServletException(message,e);14.}15.ActionM
5、apperIFmapper=ActionMapperFactory.getMapper();//得到action的mapper16.ActionMappingmapping=mapper.getMapping(request);//得到action的mapping17.if(mapping==null)...{18.//thereisnoactioninthisrequest,shouldwelookforastaticresource?19.StringresourcePath=RequestUtils.getServletPath(request);20.if("".equals
6、(resourcePath)&&null!=request.getPathInfo())...{21.resourcePath=request.getPathInfo();22.}23.if("true".equals(Configuration.get(WebWorkConstants.WEBWORK_SERVE_STATIC_CONTENT))24.&&resourcePath.startsWith("/webwork"))...{25.Stringname=resourcePath.substring("/webwork".length());26.findStaticReso
7、urce(name,response);27.}else...{28.//thisisanormalrequest,letitpassthrough29.chain.doFilter(request,response);30.}31.//WWdiditsjobhere32.return;33.}34.Objecto=null;35.try...{36.//setupContainer(request);37.o=beforeActionInvocation
此文档下载收益归作者所有