Struts2拦截器

1、在Java类中创建一个interceptor

首先在创建一个class类,继承AbstractInterceptor的抽象类,实现intercept方法

  1. public class MyInterceptor extends AbstractInterceptor {  
  2.     @Override  
  3.     public String intercept(ActionInvocation arg0) throws Exception {  
  4.         return null;  
  5.     }  
  6.   
  7. }  
public class MyInterceptor extends AbstractInterceptor {
    @Override
    public String intercept(ActionInvocation arg0) throws Exception {
        return null;
    }

}

2、在Struts.xml文件中进行配置

A)、定义拦截器

  1. <interceptors>  
  2.     <interceptor name=“拦截器名” class=“拦截器的包名”></interceptor>  
  3.     <interceptor-stack name=“拦截器栈名”>  
  4.         <interceptor-ref name=“defaultStack”></interceptor-ref>  
  5.         <interceptor-ref name=“拦截器名”></interceptor-ref>  
  6.     </interceptor-stack>  
  7. </interceptors>  
<interceptors>
    <interceptor name="拦截器名" class="拦截器的包名"></interceptor>
    <interceptor-stack name="拦截器栈名">
        <interceptor-ref name="defaultStack"></interceptor-ref>
        <interceptor-ref name="拦截器名"></interceptor-ref>
    </interceptor-stack>
</interceptors>

Ps:defaultStack是默认的拦截器名称,不可更改

B)、使用拦截器

  1. <default-interceptor-ref name=“拦截器栈名”></default-interceptor-ref>  
<default-interceptor-ref name="拦截器栈名"></default-interceptor-ref>


除此之外,还有一种自定义拦截器栈的方式


A)、定义拦截器

  1. <interceptors>  
  2.     <interceptor name=“拦截器名” class=“拦截器的包名”></interceptor>  
  3. </interceptors>  
<interceptors>
    <interceptor name="拦截器名" class="拦截器的包名"></interceptor>
</interceptors>

B)、使用拦截器

  1. <action name=“test” class=“com.zuxia.action.TestAction”>  
  2.     <interceptor-ref name=“defaultStack”></interceptor-ref>  
  3.     <interceptor-ref name=“拦截器名”></interceptor-ref>  
  4.     <result>/success.jsp</result>  
  5. </action>  
<action name="test" class="com.zuxia.action.TestAction">
    <interceptor-ref name="defaultStack"></interceptor-ref>
    <interceptor-ref name="拦截器名"></interceptor-ref>
    <result>/success.jsp</result>
</action>


注意:

1、在自定义拦截器后,默认的拦截器将会失效;

2、拦截器采用的是就近原则,先从局部查找,然后才是全局。

3、 指定拦截器

指定拦截器,和普通的拦截器大同小异

 

首先,创建一个class类,继承MethodFilterInterceptor抽象类,实现其方法


  1. public class MeInterceptor extends MethodFilterInterceptor {  
  2.   
  3.     @Override  
  4.     protected String doIntercept(ActionInvocation arg0) throws Exception {  
  5.         System.out.println(“这是指定拦截”);  
  6.         arg0.invoke();  
  7.         return null;  
  8.     }  
  9.       
  10. }  
public class MeInterceptor extends MethodFilterInterceptor {

    @Override
    protected String doIntercept(ActionInvocation arg0) throws Exception {
        System.out.println("这是指定拦截");
        arg0.invoke();
        return null;
    }

}


然后,在struts.xml文件中配置,配置起来也和原来的差不多

  1. <interceptor name=“MeInterceptor” class=“com.test.intercept.MeInterceptor”>  
  2.     <param name=“includeMethods”>add,update</param> //<span style=“font-family: 宋体;”>这是用指定那些拦截器可用</span>  
  3.     <param name=“excludeMethods”>add,update</param>//<span style=“font-family: 宋体;”>这是指那些拦截器不可用</span>  
  4. </interceptor>  
<interceptor name="MeInterceptor" class="com.test.intercept.MeInterceptor">
    <param name="includeMethods">add,update</param> //<span style="font-family: 宋体;">这是用指定那些拦截器可用</span>
    <param name="excludeMethods">add,update</param>//<span style="font-family: 宋体;">这是指那些拦截器不可用</span>
</interceptor>

4、重复表单提交

a) 、跳转的时候,不再用转发的方式,用重定向;

b) 、使用token拦截器


1、在JSP页面中,使用Struts2的标签库

  1. <%@ taglib uri=“/struts-tags” prefix=“s”%>  
<%@ taglib uri="/struts-tags" prefix="s"%>


然后在form表单中使用<s:token>标签

  1. <form action=“/Struts2_test/tokntest”>  
  2.         <s:token></s:token>  
  3.         测试:<input type=“text” name=“test”>  
  4.         <input type=“submit” value=“提交”>  
  5. </form>  
<form action="/Struts2_test/tokntest">
        <s:token></s:token>
        测试:<input type="text" name="test">
        <input type="submit" value="提交">
</form>


2、在struts.xml文件中配置

  1. <action name=“tokntest” class=“com.test.action.TokeAction”>  
  2.     <result name=“invalid.token”>/error.jsp</result>  
  3.     <result>/success.jsp</result>  
  4. </action>  
<action name="tokntest" class="com.test.action.TokeAction">
    <result name="invalid.token">/error.jsp</result>
    <result>/success.jsp</result>
</action>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值