`
qinya06
  • 浏览: 598886 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

action在request中返回的结果进行重新的处理

阅读更多
userAction
       private String name;


userActionInterceptor
   
        InterceptorMethod(){
               
               step_1: 得到当前拦截的action
               step_2:  得到 action  properties [] 修改
             
                  这样应该是没有问题的!

       }


Adding a PreResultListenerAccessing the ResultConfig Objects
If you need to work with the set of ResultConfigs before the Action executes, you can use an Interceptor to process the Map returned by getResults.

public class MyInterceptor implements Interceptor {
  // ...
  public String intercept(ActionInvocation invocation) throws Exception {
    Map resultsMap = invocation.getProxy().getConfig().getResults();

      // do something with ResultConfig in map

    return invocation.invoke();
  }
  // ...
}

If you are writing against Java 5, you could use a generic when obtain the map.
Map<String, ResultConfig> resultsMap = invocation.getProxy().getConfig().getResults();


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics