`
啸笑天
  • 浏览: 3461235 次
  • 性别: Icon_minigender_1
  • 来自: China
社区版块
存档分类
最新评论

Strust组件—RequestProcessor类详解 (转)

阅读更多

Struts框架只允许应用中存在一个ActionServlet类,但是可以存在多个客户化的RequestProcessor类,每个子应用模块都可以有单独的RequestProcessor类, 

ActionServlet主要负责初始化,以及介绍请求并找到合适的RequestRrocessor,之后真正干活的是RequestProecssor和Action. 
上回说到ActionServlet的process方法最终会调用RequestProcessor类的process方法.下面介绍这个方法. 
一.RequestProcessor的process方法
Java代码 复制代码
  1.   
  2. public void process(HttpServletRequest request,   
  3.                          HttpServletResponse response)   
  4.         throws IOException, ServletException {   
  5.         // Wrap multipart requests with a special wrapper   
  6.          request = processMultipart(request);   
  7.         // Identify the path component we will use to select a mapping   
  8.          String path = processPath(request, response);   
  9.         if (path == null) {   
  10.             return;   
  11.          }   
  12.         if (log.isDebugEnabled()) {   
  13.              log.debug("Processing a '" + request.getMethod() +   
  14.                       "' for path '" + path + "'");   
  15.          }   
  16.         // Select a Locale for the current user if requested   
  17.          processLocale(request, response);   
  18.         // Set the content type and no-caching headers if requested   
  19.          processContent(request, response);   
  20.          processNoCache(request, response);   
  21.         // General purpose preprocessing hook   
  22.         if (!processPreprocess(request, response)) {   
  23.             return;   
  24.          }   
  25.         this.processCachedMessages(request, response);   
  26.         // Identify the mapping for this request   
  27.          ActionMapping mapping = processMapping(request, response, path);   
  28.         if (mapping == null) {   
  29.             return;   
  30.          }   
  31.         // Check for any role required to perform this action   
  32.         if (!processRoles(request, response, mapping)) {   
  33.             return;   
  34.          }   
  35.         // Process any ActionForm bean related to this request   
  36.          ActionForm form = processActionForm(request, response, mapping);   
  37.          processPopulate(request, response, form, mapping);   
  38.         // Validate any fields of the ActionForm bean, if applicable   
  39.         try {   
  40.             if (!processValidate(request, response, form, mapping)) {   
  41.                 return;   
  42.              }   
  43.          } catch (InvalidCancelException e) {   
  44.              ActionForward forward = processException(request, response, e, form, mapping);   
  45.              processForwardConfig(request, response, forward);   
  46.             return;   
  47.          } catch (IOException e) {   
  48.             throw e;   
  49.          } catch (ServletException e) {   
  50.             throw e;   
  51.          }   
  52.                
  53.         // Process a forward or include specified by this mapping   
  54.         if (!processForward(request, response, mapping)) {   
  55.             return;   
  56.          }   
  57.         if (!processInclude(request, response, mapping)) {   
  58.             return;   
  59.          }   
  60.         // Create or acquire the Action instance to process this request   
  61.          Action action = processActionCreate(request, response, mapping);   
  62.         if (action == null) {   
  63.             return;   
  64.          }   
  65.         // Call the Action instance itself   
  66.          ActionForward forward =   
  67.              processActionPerform(request, response,   
  68.                                   action, form, mapping);   
  69.   
  70.         // Process the returned ActionForward instance   
  71.          processForwardConfig(request, response, forward);   
  72.   
  73.      }   


1) 调用processMultipart()方法 
如果HTTP请求方式为post,并且contentType为”multipart/form-data”开头,标准的HttpServletRequest对象将被重新包装,以方便处理”multipart”类型的HTTP请求.如果请求方式为get,或正congtentType属性不是”mulitipart”,就直接返回原始的HttpServletRequest对象. 

2) 调用processPath()方法 
获得请求的URI的路径,这一信息可用于选择合适的Struts Action组件. 

3) 调用processLocale方法 
当ControllerConfig对象的locale属性为true,将读取用户请求中包含的Locale信息,然后把Locale实例保存在session范围内. 

4) 调用processContendType(contentType)方法 
读取ControllerConfig对象的conttentType属性,然后调用response.setContentType(contentType)方法,设置响应结果的文档类型和字符编码. 
processContent()方法如下 

Java代码 复制代码
  1. protected void processContent(HttpServletRequest request,   
  2.                                   HttpServletResponse response) {   
  3.   
  4.         String contentType = moduleConfig.getControllerConfig().getContentType();   
  5.        if (contentType != null) {   
  6.             response.setContentType(contentType);   
  7.         }   
  8.   
  9.     }   



5) 调用processNoCache()方法 
读取ControllerConfig对象的nocache属性,如果nocache属性为true,在响应结果中将加入特定的头参数:Pragma,Cache-Control和Expires, 
防止页面被存储在客户的浏览器的缓存中,processNoCache方法的代码如下: 

Java代码 复制代码
  1. protected void processNoCache(HttpServletRequest request,   
  2.                                    HttpServletResponse response) {   
  3.   
  4.         if (moduleConfig.getControllerConfig().getNocache()) {   
  5.              response.setHeader("Pragma""No-cache");   
  6.              response.setHeader("Cache-Control""no-cache,no-store,max-age=0");   
  7.              response.setDateHeader("Expires"1);   
  8.          }   
  9.      }  



6)调用processPreprocess()方法 
该方法不执行任何操作.直接返回true.子类可以覆盖这个方法. 
执行客户化的预处理请求操作. 

7)调用processMapping()方法 
寻找和用户请求的URI匹配的ActionMapping,如果不存在这样的ActionMapping,则向用户返回恰当的错误信息. 

8)调用processRoles()方法 
先判断是否为Action配置了安全角色,如果配置了安全角色,就调用isUserInRole()方法判断当前用户是否具备必需的角色,如果不具备,就结束请求处理流程.,向用户返回恰当的错误消息. 

9)调用processActionForm()方法 
先判断是否为ActionMapping配置了ActionForm,如果配置了ActionForm,就先从ActionForm的存在范围内(request或session)寻找改ActionForm实例,如果不存在,就创建一个实例,接下来把它保存在合适的范围内,保存时使用的属性key为ActionMapping的name属性。 

10)调用processPopulate()方法 
如果为ActionMapping配置了ActionForm,就先调用ActionForm的reset()方法,再把请求中的表单数据组装到ActionForm中。 

11)调用processValidate()方法 
如果为ActionMapping配置了ActionForm,并且ActionMapping的validate属性为true,就调用ActionForm的validate()方法,如果validate方法返回的ActionErrors对象中包含ActionMessage对象,说明表单验证失败。就把ActionErrors对象放在request范围内,再把请求转发到ActionMapping的input属性指定的Web组件。如果ActionForm的validate方法执行表单验证成功,就继续执行下面的处理流程。 

12)调用processForward()方法 
判断是否在ActionMapping中配置了forward属性。如果配置了这个属性,就调用RequestDispatcher的forward方法,请求处理流程结束。否则进行下一步。

13)调用processInclude()方法 
判断是否在ActionMapping中配置了include属性。如果配置了这个属性,就调用RequestDispatcher的include方法,请求处理流程结束。否则进行下一步。 

14)调用processActionCreate()方法 
先判断是否在Action缓存中存在这个Action实例,如果没有就新建一个Action实例,把它放在Action缓存中。可以看出Action也是只有一个实例在运行的。 

15)调用processActionPerform 
该方法调用Action实例的execute方法,该方法位于try/catch中,以及捕获异常。processActionPerform()方放代码如下。 

Java代码 复制代码
  1. protected ActionForward   
  2.         processActionPerform(HttpServletRequest request,   
  3.                              HttpServletResponse response,   
  4.                              Action action,   
  5.                              ActionForm form,   
  6.                              ActionMapping mapping)   
  7.        throws IOException, ServletException {   
  8.        try {   
  9.            return (action.execute(mapping, form, request, response));   
  10.         } catch (Exception e) {   
  11.            return (processException(request, response,   
  12.                                      e, form, mapping));   
  13.         }   
  14.    



16)调用processActionForward方法 
把你的Action的excute方法返回的ActionFoward对象作为参数传给它,processActionForward对象包的请求转发信息来执行请求转发或重定向。 

RequestProcessor类的process方法中,会访问ControllerConfig、ActionMappig和ActionForward实力的属性,ControllerConfig类和struts配置文件的<controlle>r元素对应,ActionMapping类和<action>元素对应,ActionForward和<forward>元素对应,process方法通过访问这三个类实例的属性来获得相关的配置信息。 
写了这么多,RequestProcessor干得事够多的吧。 

二.扩展RequestProcessor 
如果想修改RequestProcessor的一些默认功能,改易覆盖RequestProcessor基类中的相关方法. 

Java代码 复制代码
  1. Public class CustomRequestProcessor extends RequestProcessor{   
  2.   protected void processPreprocess (HttpServletRequest request,   
  3.                                   HttpServletResponse response) {   
  4.  
  5. request.setCharacterEncoding("UTF-8");  //在这加一行设置编码的的代吗。
  6. super.process(request, response);
  7. }   
  8. }  


在struts配置文件中,<controller>元素的processorClass属性用于配置你自己的RequestProcessor

Java代码 复制代码
  1. </controller   
  2. contentType=“text/html:charset=”GB2312”   
  3. locale=”true” nocache=”trueprocessorCalss=”com.test.CustomRequestProcessor”/>  

 

分享到:
评论

相关推荐

    Struts1 控制器组件和动态表单详解

    2. **RequestProcessor组件**: RequestProcessor是每个子应用模块的请求处理器,它才是真正执行处理工作的核心。在调用Action的execute方法之前,RequestProcessor会执行一些预处理任务。开发者可以通过扩展...

    strust 2 资源分类

    如果你要进行java开发可以下载这个资源使用,这个不错,可以试一试。

    Strust2配置例子

    接下来,创建一个Action类,这是Struts2中的核心组件,负责处理用户的请求。比如,我们可以创建一个名为`LoginAction`的类,实现登录逻辑: ```java public class LoginAction { private String username; ...

    Strust1框架搭建完整代码

    本教程将基于提供的"Strust1框架搭建完整代码"进行详解,帮助你理解和掌握Struts1的基础知识。 1. **Struts1简介** Struts1是早期Web开发中的重要框架,它简化了Java Servlet和JSP的开发,通过定义Action类和配置...

    Strust1标 Strust1标签Strust1标签Strust1标签

    2. 表单验证:Struts1支持基于注解的表单验证,可以在Action类中定义验证规则,标签库会自动处理验证逻辑。 3. 国际化:Struts1标签库可以轻松实现国际化,通过`&lt;s:text&gt;`标签结合资源文件,实现多语言支持。 4. ...

    strust2.0常用包

    这些jar包包含了框架的核心组件、依赖的库以及用于处理请求和响应的类。下面将详细介绍这些关键的jar包及其作用: 1. **struts2-core.jar**:这是Struts2的核心库,包含了框架的基本结构和主要组件,如Action、...

    spring+mybatis+strust2

    SSM框架是Java Web开发中常用的三大组件:Spring MVC、Spring和MyBatis的组合,它们各自负责不同的职责,共同构建了一个高效、灵活的Web应用解决方案。下面将详细阐述这三个框架的核心概念、功能以及如何协同工作。 ...

    strust2.0中文教程

    2. **Action类**:Action类是Struts 2的核心组件,它处理HTTP请求,执行业务逻辑,并返回一个结果。每个Action类通常对应于一个特定的用户操作或业务流程。 3. **配置文件**:Struts 2使用XML配置文件(struts.xml...

    strust2 漏洞升级包

    该漏洞影响了Struts2的StrutsPrepareAndExecuteFilter组件,使得未正确过滤的用户输入被传递到OGNL表达式中执行。 除了CVE-2017-5638,还有其他多个Struts2漏洞,如CVE-2018-11776、CVE-2018-11778等。这些漏洞同样...

    strust2中文帮助文档

    strust2 中文 帮助文档 新手入门到精通

    整合 Spring 和 Strust2 一起工作

    讲述了Spring和Strust2的整合

    strust2的各种学习例子

    2. **Action类**:在Struts2中,Action类是处理用户请求的核心组件,它接收HTTP请求,执行相应的业务逻辑,并返回结果。 3. **配置文件**:Struts2的配置文件(通常为struts.xml)用于定义Action类与URL的映射,...

    Strust2.2.3.15.3.chm

    最为完善的Strust2.3.15.2 chm 帮助文档;文档中包含了xwork部分,可以直接查看struts底层xwork部分的实现;如通常需要继承的ActionSupport、DefaultTypeConverter等

    strust2漏洞利用程序

    strust2漏洞利用程序

    strust2实战教程

    java的strust2框架开发详细教程,适合有基础的读者阅读

    spring2.5+strust1+hibernate3.0JAR包集合

    总的来说,这个"spring2.5+struts1+hibernate3.0 JAR包集合"代表了一个成熟、广泛使用的Java Web开发解决方案,它整合了优秀的组件,为开发人员提供了强大的工具,以构建复杂、高性能的应用程序。然而,随着技术的...

    java strust2应用JAR包

    这个"java struts2应用JAR包"包含了运行Struts2框架所需的核心库和其他相关组件。 首先,Struts2的核心JAR包主要包括以下几个部分: 1. **struts2-core.jar**:这是Struts2框架的核心库,包含了Action、...

    strust_2_3_8

    阿帕奇网站最新下载的strust2的jar包

Global site tag (gtag.js) - Google Analytics