Struts2 中自定义拦截器

在Struts 2中的拦截器,要实现com.opensymphony.xwork2.interceptor.Interceptor接口,在struts.xml中配置。可以用拦截器来完成调用Action业务逻辑之前的预处理或是之后的善后处理。还可以通过配置多个拦截器来满足action需求。

com.opensymphony.xwork2.interceptor.Interceptor接口, 一般不直接使用它.
com.opensymphony.xwork2.interceptor.AbstractInterceptor 抽象类(空实现了Interceptor接口)
自己写拦截器可继承这个抽象类, 重写intercept()方法.实现对某个Action的拦截
com.opensymphony.xwork2.interceptor.MethodFilterInterceptor 抽象类(继承AbstractInterceptor)
自己写拦截器 可继承这个抽象类, 重写doIntercept()方法.  实现对Action的的某个方法的拦截.
excludeMethods(不拦截的方法),includeMethods(要拦截的方法), 多个方法名用豆号隔开

简单例子 --- 自定义拦截器

public class MyInterceptor2 extends AbstractInterceptor {

private String userName; //生成其get/set方法

@Override
public String intercept(ActionInvocation invocation) throws Exception {
System.out.println("intercept2");
String result = invocation.invoke();
return result;
}
}

//权限验证拦截器

public class AuthInterceptor extends AbstractInterceptor {

@Override
@SuppressWarnings("unchecked")
public String intercept(ActionInvocation invocation) throws Exception {
// TODO Auto-generated method stub
Map map = invocation.getInvocationContext().getSession();

if (map.get("user") == null) {
return Action.LOGIN;
} else {
return invocation.invoke();
}
}
}

在struts.xml中配置自定义拦截器 --- 代码如下

<interceptors>
<interceptor name="myInterceptor" class="com.stu.interceptor.MyInterceptor"></interceptor>
<interceptor name="myInterceptor2" class="com.stu.interceptor.MyInterceptor2">
<param name="userName">Smiles</param> <!--给拦截器中参数附默认值,可以在引用时修改-->
</interceptor>
<interceptor name="myInterceptor3" class="com.stu.interceptor.MyInterceptor3"></interceptor>

<!-- 配置权限拦截器 -->
<interceptor name="auth" class="com.stu.interceptor.AuthInterceptor"></interceptor>
<!-- 配置一个拦截器栈 -->
<interceptor-stack name="myStack">
<!-- <interceptor-ref name="myInterceptor"></interceptor-ref>
<interceptor-ref name="myInterceptor2"></interceptor-ref>
-->
<interceptor-ref name="defaultStack"></interceptor-ref>
</interceptor-stack>
</interceptors>

<global-results> <!-- 配置全局返回页面 -->
<result name="login" type="redirect">/login.jsp</result> <!--type=”redirect“重定向到login页面-->
</global-results>

<action name="register" class="com.stu.action.RegisterAction">
<result name="success">/success.jsp</result>
<result name="input">/register2.jsp</result>
<!--<interceptor-ref name="myInterceptor3">
<param name="includeMethods">execute</param> 配置要拦截的方法
<param name="excludeMethods">execute</param> 配置不拦截的方法
</interceptor-ref>-->
<!-- <interceptor-ref name="auth"></interceptor-ref> 配置权限验证拦截器-->
<interceptor-ref name="myStack"></interceptor-ref> <!--引入拦截器栈-->
</action>

action中引用单个自定义拦截器时,要引入struts的默认拦截器<interceptor-ref name="defaultStack"></interceptor-ref>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值