Struts2学习笔记(十)——自定义拦截器

时间:2022-12-05 08:58:13

Struts2拦截器是基于AOP思想实现的,而AOP的实现是基于动态代理。Struts2拦截器会在访问某个Action之前或者之后进行拦截,并且Struts2拦截器是可插拔的;Struts2拦截器栈就是将拦截器按照顺序连接在一起的链,当满足拦截的要求时,则会按照实现声明的顺序依次执行拦截器。

1、Struts2自定义拦截器介绍

Struts2所有拦截器都必须实现Interceptor接口,Interceptor接口主要有3个方法:

  • init():初始化方法,只在拦截器加载时执行一次
  • intercept(ActionInvocation invocation):拦截器执行方法,每一次请求就执行一次
  • destory():销毁方法,只在拦截器释放时执行一次

AbstractInterceptor抽象类实现了Interceptor 接口。并为init()和destroy()提供了一个空白的实现,所以在实际开发中,自定义拦截器只需要继承AbstractInterceptor类, 并且实现intercept(ActionInvocation invocation)方法就可以了。

2、Struts2自定义拦截器创建步骤

1).创建一个类实现Interceptor接口或继承AbstractInterceptor类。
  2).重写intercept方法,这个方法是真正拦截操作,如果想要继续向下访问其它拦截器,必须在intercept方法中通过参数ActionInvocation调用invoke方法。
  3).配置拦截器,需要在struts.xml文件中配置,分为两种情况:

  • 为package包下所有<action>配置共用拦截器,需要通过设置<default-interceptor-ref>来设置默认拦截器,需要在<action>之前配置
    • 不配置拦截器栈,只会执行<default-interceptor-ref>设置的拦截器
       <package name="default" namespace="/" extends="struts-default">
      <interceptors>
      <interceptor name="login" class="com.sunny.interceptor.LoginIntercept"></interceptor>
      </interceptors>
      <default-interceptor-ref name="login"></default-interceptor-ref>
      <action name="loginAction" class="com.sunny.action.LoginAction">
      <result>/success.jsp</result>
      <result name="error">/error.jsp</result>
      </action>
      </package>
    • 配置拦截器栈
        <package name="default" namespace="/" extends="struts-default">
      <interceptors>
      <interceptor name="login" class="com.sunny.interceptor.LoginIntercept"></interceptor>
      <interceptor-stack name="my">
      <interceptor-ref name="login"></interceptor-ref>
      <interceptor-ref name="defaultStack"></interceptor-ref>
      </interceptor-stack>
      </interceptors>
      <default-interceptor-ref name="my"></default-interceptor-ref>
      <action name="loginAction" class="com.sunny.action.LoginAction">
      <result>/success.jsp</result>
      <result name="error">/error.jsp</result>
      </action>
      </package>
  • 为package包下某个<action>配置拦截器,需要在<action>中通过设置<interceptor-ref>来设置拦截器,如果想要执行defaultStack,则需要在<action>中配置
    • 不配置拦截器栈
       <package name="default" namespace="/" extends="struts-default">
      <interceptors>
      <interceptor name="login" class="com.sunny.interceptor.LoginIntercept"></interceptor>
      </interceptors>
      <action name="loginAction" class="com.sunny.action.LoginAction">
      <result>/success.jsp</result>
      <result name="error">/error.jsp</result>
      <interceptor-ref name="login"></interceptor-ref>
      <interceptor-ref name="defaultStack"></interceptor-ref>
      </action>
      </package>
    • 配置拦截器栈
       <package name="default" namespace="/" extends="struts-default">
      <interceptors>
      <interceptor name="login" class="com.sunny.interceptor.LoginIntercept"></interceptor>
      <interceptor-stack name="my">
      <interceptor-ref name="login"></interceptor-ref>
      <interceptor-ref name="defaultStack"></interceptor-ref>
      </interceptor-stack>
      </interceptors>
      <action name="loginAction" class="com.sunny.action.LoginAction">
      <result>/success.jsp</result>
      <result name="error">/error.jsp</result>
      <interceptor-ref name="my"></interceptor-ref>
      </action>
      </package>

2、Struts2自定义拦截器实现示例:判断是否登录

该示例主要是用来验证用户是否登录,如果没登录,就跳转到error.jsp页面,提示需要登录系统。

拦截器类:

 public class LoginIntercept extends AbstractInterceptor {

     @Override
public String intercept(ActionInvocation invocation) throws Exception {
Map session = ServletActionContext.getContext().getSession();
if (session.get("user")==null) {
return "error";
} else {
return invocation.invoke();
}
}
}

Action类:

 public class LoginAction extends ActionSupport {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String execute() throws Exception {
return "success";
}
}

struts.xml配置文件:

 <struts>
<constant name="struts.devMode" value="true" /> <package name="default" namespace="/" extends="struts-default">
<interceptors>
<interceptor name="login" class="com.sunny.interceptor.LoginIntercept"></interceptor>
<interceptor-stack name="my">
<interceptor-ref name="login"></interceptor-ref>
<interceptor-ref name="defaultStack"></interceptor-ref>
</interceptor-stack>
</interceptors>
<action name="loginAction" class="com.sunny.action.LoginAction">
<result>/success.jsp</result>
<result name="error">/error.jsp</result>
<interceptor-ref name="my"></interceptor-ref>
</action>
</package>
</struts>

input.jsp页面:

 <body>
<form action="${pageContext.servletContext.contextPath}/loginAction.action">
姓名:<input type="text" name="name"><br>
<input type="submit" value="提交">
</form>
</body>

error.jsp页面:

 <body>
请登录系统
</body>

登录界面:

Struts2学习笔记(十)——自定义拦截器

由于没有登录系统,所以点击提交之后,会显示:

Struts2学习笔记(十)——自定义拦截器