一,<interceptor name="chain" class="com.opensymphony.xwork2.interceptor.ChainingInterceptor"/>
就是把这个action的result 转给下个action,那么这个action当中的 valueStack 需要拷贝到下个Action中去
<action name="someAction" class="com.examples.SomeAction">
<interceptor-ref name="basicStack"/>
<result name="success" type="chain">otherAction</result>
</action>
<action name="otherAction" class="com.examples.OtherAction">
<interceptor-ref name="chain"/>
<interceptor-ref name="basicStack"/>
<result name="success">good_result.ftl</result>
</action>
其中可以配置的有struts2的3个常量:
- struts.xwork.chaining.copyErrors - set to true to copy Action Errors(默认false)
- struts.xwork.chaining.copyFieldErrors - set to true to copy Field Errors (默认false)
- struts.xwork.chaining.copyMessages - set to true to copy Action Messages (默认false)
另外还有2个参数
protected Collection<String> excludes;
protected Collection<String> includes;
这2个参数,如果excludes 被设置了,那么里面提到的参数将不被复制
如果includes 被设置了,那么里面提到的参数将被复制
如果includes 没有被设置,那么除了excludes 以外的都将被复制,详情可参见OgnlUtil.java当中的代码片段
if (exclusions != null && exclusions.contains(fromPd.getName())) {
copy = false;
} else if (inclusions != null && !inclusions.contains(fromPd.getName())) {
copy = false;
}
========================================================
二,<interceptor name="cookie" class="org.apache.struts2.interceptor.CookieInterceptor"/>
主要用于将cookie中指定的name 和指定的 value ,放到valueStack中去
如果Action实现了CookieAware接口也可以参考如下代码
/**
* Hook that set the <code>cookiesMap</code> into action that implements
* {@link CookiesAware}.
*
* @param action
* @param cookiesMap
*/
protected void injectIntoCookiesAwareAction(Object action, Map<String, String> cookiesMap) {
if (action instanceof CookiesAware) {
if (LOG.isDebugEnabled())
LOG.debug("action ["+action+"] implements CookiesAware, injecting cookies map ["+cookiesMap+"]");
((CookiesAware)action).setCookiesMap(cookiesMap);
}
}
分享到:
相关推荐
Struts2 Interceptor是Java Web开发中非常关键的一个概念,它是Apache Struts2框架的核心组成部分。Struts2是一个基于Model-View-Controller (MVC)架构模式的开源框架,用于构建企业级的Java web应用程序。...
`Struts2Day2_intercepter`指的是Struts2的核心特性之一——拦截器。拦截器是Struts2处理请求的一种机制,它们按照预定义的顺序执行,可以用于实现如日志记录、权限验证、事务管理等功能。通过自定义拦截器,开发者...
2 这个请求经过一系列的过滤器(Filter)(这些过滤器中有一个叫做ActionContextCleanUp的可选过滤器,这个过滤器对于Struts2和其他框架的集成很有帮助,例如:SiteMesh Plugin) 3 接着FilterDispatcher被调用,...
- **ValueStack演示**:通过具体的示例介绍如何在Struts2中使用ValueStack来管理数据,如如何添加对象到ValueStack中、如何从ValueStack中取出对象等。 ### 分页功能实现 - **分页02** 案例描述了如何在Struts2...
最全的InterCepter的基础,面向对象AOP的透彻分析
Struts2是一个开源的Web框架,它是Struts1的下一代版本,基于Intercepter(拦截器)模式,提供了更为灵活的配置机制,并且与许多其他框架兼容。Struts2.1.6是该框架的一个成熟版本,支持多种插件和功能扩展。 #### ...
Struts2 的配置 struts.xml Action 详解 Struts2 框架是一个基于 Java 语言的 Web 应用程序框架,它提供了一个灵活的架构,允许开发者快速构建基于 Web 的应用程序。在 Struts2 框架中,struts.xml 文件扮演着核心...
(2)拦截器组件可以继承AbstractIntercepter类(实现了Intercepter接口)。 (3)拦截器组件可以继承MethodFilterIntercepter类(继承自AbstractIntercepter),增加了方法过滤功能(上面两种方式是拦截所有方法,这个...
Interceptor(拦截器)是AOP(面向切面编程)的一种实现,常用于MVC框架如Spring MVC和Struts2中。Interceptor可以在请求到达Controller(控制器)之前或之后执行,可以理解为一种预处理和后处理机制。与Filter不同...