2008-06-02
struts2学习笔记(3)--截拦器(Interceptors)
关键字: struts2 截拦器 interceptors- 简介
Many Actions share common concerns. Some Actions need input validated. Other Actions may need a file upload to be pre-processed. Another Action might need protection from a double submit. Many Actions need drop-down lists and other controls pre-populated before the page displays.
The framework makes it easy to share solutions to these concerns using an "Interceptor" strategy. When you request a resource that maps to an "action", the framework invokes the Action object. But, before the Action is executed, the invocation can be intercepted by another object. After the Action executes, the invocation could be intercepted again. Unsurprisingly, we call these objects "Interceptors."
- Understanding Interceptors
Interceptors can execute code before and after an Action is invoked. Most of the framework's core functionality is implemented as Interceptors. Features like double-submit guards, type conversion, object population, validation, file upload, page preparation, and more, are all implemented with the help of Interceptors. Each and every Interceptor is pluggable, so you can decide exactly which features an Action needs to support.
Interceptors can be configured on a per-action basis. Your own custom Interceptors can be mixed-and-matched with the Interceptors bundled with the framework. Interceptors "set the stage" for the Action classes, doing much of the "heavy lifting" before the Action executes.
Action Lifecyle
In some cases, an Interceptor might keep an Action from firing, because of a double-submit or because validation failed. Interceptors can also change the state of an Action before it executes.
The Interceptors are defined in a stack that specifies the execution order. In some cases, the order of the Interceptors on the stack can be very important.
- 常用截拦器介绍
- alias :
- chain :
- checkbox :
- cookie :
- conversionError :
- createSession :
- debugging :
- execAndWait :
- exception :
- fileUpload :
- i18n :
- logger :
- store :
- modelDriven :
- scopedModelDriven :
- params :
- prepare :
- scope :
- servletConfig :
- staticParams :
- roles :
- timer :
- token :
- tokenSession :
- validation :
- workflow :
- N/A :
- profiling :
Converts similar parameters that may be named differently between requests.
Makes the previous Action's properties available to the current Action. Commonly used together with <result type="chain"> (in the previous Action).
Adds automatic checkbox handling code that detect an unchecked checkbox and add it as a parameter with a default (usually 'false') value. Uses a specially named hidden field to detect unsubmitted checkboxes. The default unchecked value is overridable for non-boolean value'd checkboxes.
Inject cookie with a certain configurable name / value into action. (Since 2.0.7.)
Adds conversion errors from the ActionContext to the Action's field errors
Create an HttpSession automatically, useful with certain Interceptors that require a HttpSession to work properly (like the TokenInterceptor)
Provides several different debugging screens to provide insight into the data behind the page.
Executes the Action in the background and then sends the user off to an intermediate waiting page.
Maps exceptions to a result.
An Interceptor that adds easy access to file upload support.
Remembers the locale selected for a user's session.
Outputs the name of the Action.
Store and retrieve action messages / errors / field errors for action that implements ValidationAware interface into session.
If the Action implements ModelDriven, pushes the getModel Result onto the Value Stack.
If the Action implements ScopedModelDriven, the interceptor retrieves and stores the model from a scope and sets it on the action calling setModel.
Sets the request parameters onto the Action.
If the Action implements Preparable, calls its prepare method.
Simple mechanism for storing Action state in the session or application scope.
Provide access to Maps representing HttpServletRequest and HttpServletResponse.
Sets the struts.xml defined parameters onto the action. These are the <param> tags that are direct children of the <action> tag.
Action will only be executed if the user has the correct JAAS role.
Outputs how long the Action takes to execute (including nested Interceptors and View)
Checks for valid token presence in Action, prevents duplicate form submission.
Same as Token Interceptor, but stores the submitted data in session when handed an invalid token
Performs validation using the validators defined in action-validation.xml
Calls the validate method in your Action class. If Action errors are created then it returns the INPUT view.
Removes parameters from the list of those available to Actions .
Activate profiling through parameter .
发表评论
- 浏览: 9750 次
- 性别:

- 来自: 杭州

- 详细资料
搜索本博客
我的相册
expanding_universe_1400x904
共 20 张
共 20 张
最近加入圈子
链接
- 设计模式
- robbin
- shakira Suerte
- 10个寓言故事
- 面向对象编程五大原则
- cicada-it
- lucene专栏
- 自定义的JS对话框
- jbpm
- jbpm2
- 实战web 2.0
- 34
- 大型WEB系统的架构设计和技术选型
- davexin
- 25个优秀的Ajax技术和实例
- JBoss企业级应用服务平台群集指南
- http://www.zhuoda.org/lunzi/dir_7674.html
- groovyland
- http://ahuaxuan.javaeye.com/
- http://leeon.javaeye.com/category/18773
- 江南白衣
- The Google Chart API
- 2008聪明老板的“经营秘诀"
- 您企业的品牌视觉印象个性鲜明吗?
最新评论
-
升级Spring 2.5注意事项
楼上这也行? 不过分析的很好!东西一比较 就有其意味了
-- by dhxyu -
升级Spring 2.5注意事项
全世界的人都知道这是参考手册里面,难道不能帖这里吗?!
-- by weidewei -
升级Spring 2.5注意事项
晕,这个不是中文参考手册里的内容吗
-- by kjj -
java中四种操作(DOM、SA ...
这篇文章好像出来很多年了吧。。google一下,满世界都是
-- by vampire423 -
Lucene 入门与实战
30,31行代码中: document.add(Field.Text("path ...
-- by txxg






评论排行榜