`
yaozuodaoforfly
  • 浏览: 119043 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

AliasInterceptor 总结

 
阅读更多

The aim of this Interceptor is to alias a named parameter to a different named parameter. By acting as the glue between actions sharing similiar parameters (but with different names), it can help greatly with action chaining.

Action's alias expressions should be in the form of #{ "name1" : "alias1", "name2" : "alias2" }. This means that assuming an action (or something else in the stack) has a value for the expression named name1 and the action this interceptor is applied to has a setter named alias1alias1 will be set with the value fromname1.

 

 

 <action name="someAction" class="com.examples.SomeAction">
     <!-- The value for the foo parameter will be applied as if it were named bar -->
     <param name="aliases">#{ 'foo' : 'bar' }</param>

     <interceptor-ref name="alias"/>
     <interceptor-ref name="basicStack"/>
     <result name="success">good_result.ftl</result>
 </action>

它的意思是:如果你传的参数有一个叫foo的 而你someAction类里刚好有一个name=bar的属性而且该属

性必须要有setBar()方法,那么它就会把参数foo的值赋给bar属性

分享到:
评论

相关推荐

    Struts2默认拦截器解析[归类].pdf

    1. **AliasInterceptor** - 别名拦截器:允许为Action配置别名,使得同一个Action可以通过不同的URL访问。 2. **AutowiringInterceptor** - 自动装配拦截器:在Spring整合Struts2时使用,自动注入Action的依赖。 3...

    struts2_工作流程

    - **AliasInterceptor**:用于在不同请求之间转换参数名称。 - **ActionAutowiringInterceptor**:实现依赖注入,自动装配Action的属性。 - **ChainingInterceptor**:配合chain结果类型,实现Action间的转发。 - **...

    Struts2拦截器及其用法详细说明

    - **AliasInterceptor**:允许给Action配置多个别名,方便重定向和链接。 - **ActionAutowiringInterceptor**:在Struts2与Spring整合时,自动装配Action中的Bean,无需手动注入。 - **ChainingInterceptor**:使...

    struts拦截器介绍

    1. **AliasInterceptor**:别名拦截器,用于在不同的请求之间转换请求参数的名称,但不改变请求的内容。 2. **ChainingInterceptor**:链式拦截器,使得前一个Action的属性能够被后续的Action访问,通常与`...

Global site tag (gtag.js) - Google Analytics