您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 项目/工程管理 > struts2核心工作流程与原理
这是Struts2官方站点提供的Struts2的整体结构。一个请求在Struts2框架中的处理大概分为以下几个步骤1.客户端提起一个(HttpServletRequest)请求,如上文在浏览器中输入””就是提起一个(HttpServletRequest)请求。2.请求被提交到一系列(主要是三层)的过滤器(Filter),如(ActionContextCleanUp、其他过滤器(SiteMesh等)、FilterDispatcher)。注意这里是有顺序的,先ActionContextCleanUp,再其他过滤器(SiteMesh等)、最后到FilterDispatcher。3.FilterDispatcher是控制器的核心,就是mvc中c控制层的核心。下面粗略的分析下我理解的FilterDispatcher工作流程和原理:FilterDispatcher进行初始化并启用核心doFilter其代码如下:publicvoiddoFilter(ServletRequestreq,ServletResponseres,FilterChainchain)throwsIOException,ServletException{HttpServletRequestrequest=(HttpServletRequest)req;HttpServletResponseresponse=(HttpServletResponse)res;ServletContextservletContext=filterConfig.getServletContext();//在这里处理了HttpServletRequest和HttpServletResponse。DispatcherUtilsdu=DispatcherUtils.getInstance();du.prepare(request,response);//正如这个方法名字一样进行locale、encoding以及特殊requestparameters设置try{request=du.wrapRequest(request,servletContext);//对request进行包装}catch(IOExceptione){Stringmessage=CouldnotwrapservletrequestwithMultipartRequestWrapper!;LOG.error(message,e);thrownewServletException(message,e);}ActionMapperIFmapper=ActionMapperFactory.getMapper();//得到action的mapperActionMappingmapping=mapper.getMapping(request);//得到action的mappingif(mapping==null){//thereisnoactioninthisrequest,shouldwelookforastaticresource?StringresourcePath=RequestUtils.getServletPath(request);if(.equals(resourcePath)&&null!=request.getPathInfo()){resourcePath=request.getPathInfo();}if(true.equals(Configuration.get(WebWorkConstants.WEBWORK_SERVE_STATIC_CONTENT))&&resourcePath.startsWith(/webwork)){Stringname=resourcePath.substring(/webwork.length());findStaticResource(name,response);}else{//thisisanormalrequest,letitpassthroughchain.doFilter(request,response);}//WWdiditsjobherereturn;}Objecto=null;try{//setupContainer(request);o=beforeActionInvocation(request,servletContext);//整个框架最最核心的方法,下面分析du.serviceAction(request,response,servletContext,mapping);}finally{afterActionInvocation(request,servletContext,o);ActionContext.setContext(null);}}du.serviceAction(request,response,servletContext,mapping);//这个方法询问ActionMapper是否需要调用某个Action来处理这个(request)请求,如果ActionMapper决定需要调用某个Action,FilterDispatcher把请求的处理交给ActionProxypublicvoidserviceAction(HttpServletRequestrequest,HttpServletResponseresponse,Stringnamespace,StringactionName,MaprequestMap,MapparameterMap,MapsessionMap,MapapplicationMap){HashMapextraContext=createContextMap(requestMap,parameterMap,sessionMap,applicationMap,request,response,getServletConfig());//实例化Map请求,询问ActionMapper是否需要调用某个Action来处理这个(request)请求extraContext.put(SERVLET_DISPATCHER,this);OgnlValueStackstack=(OgnlValueStack)request.getAttribute(ServletActionContext.WEBWORK_VALUESTACK_KEY);if(stack!=null){extraContext.put(ActionContext.VALUE_STACK,newOgnlValueStack(stack));}try{ActionProxyproxy=ActionProxyFactory.getFactory().createActionProxy(namespace,actionName,extraContext);//这里actionName是通过两道getActionName解析出来的,FilterDispatcher把请求的处理交给ActionProxy,下面是ServletDispatcher的TODO:request.setAttribute(ServletActionContext.WEBWORK_VALUESTACK_KEY,proxy.getInvocation().getStack());proxy.execute();//通过代理模式执行ActionProxyif(stack!=null){request.setAttribute(ServletActionContext.WEBWORK_VALUESTACK_KEY,stack);}}catch(ConfigurationExceptione){log.error(Couldnotfindaction,e);sendError(request,response,HttpServletResponse.SC_NOT_FOUND,e);}catch(Exceptione){log.error(Couldnotexecuteaction,e);sendError(request,response,HttpServletResponse.SC_INTERNAL_SERVER_ERROR,e);}}4.FilterDispatcher询问ActionMapper是否需要调用某个Action来处理这个(request)请求,如果ActionMapper决定需要调用某个Action,FilterDispatcher把请求的处理交给ActionProxy。5.ActionProxy通过ConfigurationManager(struts.xml)询问框架的配置文件,找到需要调用的Action类.如上文的struts.xml配置?xmlversion=1.0encoding=GBK?!DOCTYPEstrutsPUBLIC-//ApacheSoftwareFoundation//DTDStrutsConfiguration2.0//EN=struts-default.xml/packagename=struts2extends=struts-defaultactionname=addclass=edisundong.AddActionresultadd.jsp/result/action/package/struts如果提交请求的是add.action,那么找到的Action类就是edisundong.AddAction。6.ActionProxy创建一个ActionInvocation的实例,同时ActionInvocation通过代理模式调用Action。但在调用之前ActionInvocation会根据配置加载Action相关的所有Interceptor。(Interceptor是struts2另一个核心级的概念)下面我们来看看ActionInvocation是如何工作的:ActionInvocation是Xworks中Action调度的核心。而对Interceptor的调度,也正是由ActionInvocation负责。ActionInvocation是一个接口,而DefaultActionInvocation则是Webwork对ActionInvocation的默认实现。Interceptor的调度流程大致如下:1.ActionInvocation初始化时,根据配置,加载Action相关的所有Interceptor。2.通过ActionInvocation.invoke方法调用Action实现时,执行Interceptor。Interceptor将很多功能从我们的Action中独立出来,大量减少了我们Action的代码,独立出来的行为具有很好的重用性。XWork、WebWork的许多功能都是有Interceptor实现,可以在配置文件中组装Action用到的Interceptor,它会按照你指定的顺序,在Action执行前后运行。那么什么是拦截器。拦截器就是AOP(Aspect-OrientedProgramming)的一种实现。(AOP是指用于在某个方法或字段被访问之前,进行拦截然后在之前或之后加入某些操作。)拦截器的例子这里就不展开了。struts-default.xml文件摘取的内容:interceptorname=aliasclass=com.opensymphony.xwork2.interceptor.AliasInterceptor/interceptorname=autowiringclass=com.opensymphony.xwork2.spring.interceptor.Actio
本文标题:struts2核心工作流程与原理
链接地址:https://www.777doc.com/doc-638855 .html