actionInvocation.invoke()的作用

转自:http://blog.csdn.net/pengxuan/article/details/7105769

关于Struts2的自定义的验证截器

package ch06.struts2.Interceptor;

import java.util.Map;

import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.Interceptor;


public class AuthenticationInterceptor implements Interceptor  {

  private static final long serialVersionUID = 1L;
 
  public static final String USER_SESSION_KEY = "UserSessionKey";
  
  public void destroy() {}

  public void init() {}


     public String intercept(ActionInvocation actionInvocation) throws Exception {
   //取得Session
         Map session = actionInvocation.getInvocationContext().getSession();
   //从Session里获得登录时保存进session的User类
         String user = (String) session.get(USER_SESSION_KEY);
         //判断用户名是否为空  
         boolean isAuthenticated = (null!=user);
         if (!isAuthenticated) {//如果未通过登录验证

           //下面的那个return怎么能返回登录页面
             return Action.LOGIN;   //返回登录页面  
      
         }else{       
    // 下面的这个actionInvocation.invoke()是什么意思
         return actionInvocation.invoke();//返回验证通过         
         }
     }
}


struts.xml配置自定义的拦截器

  1. <!-- 自定义验证拦截器 -->  
  2.      <interceptors>  
  3.    <interceptor name="Authentication"  class="ch06.struts2.Interceptor.AuthenticationInterceptor" />       
  4.   </interceptors>   
  5.   
  6. <action name="Welcome">  
  7.             <interceptor-ref name ="Authentication"/>  
  8.             <result name="success">welcome.jsp</result>  
  9. </action>  
<!-- 自定义验证拦截器 -->
     <interceptors>
   <interceptor name="Authentication"  class="ch06.struts2.Interceptor.AuthenticationInterceptor" />     
  </interceptors> 

<action name="Welcome">
            <interceptor-ref name ="Authentication"/>
            <result name="success">welcome.jsp</result>
</action>

 

最佳答案
actionInvocation.invoke() 就是通知struts2接着干下面的事情
比如 调用下一个拦截器 或 执行下一个Action
就等于退出了你自己编写的这个interceptor了
  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值