拦截器的工作原理如图 拦截器是由每一个action请求(request)都包装在一系列的拦截器的内部,通过redirectAction再一次发送请求。
拦截器可以在Action执行直线做相似的操作也可以在Action执行直后做回收操作。
我们可以让每一个Action既可以将操作转交给下面的拦截器,Action也可以直接退出操作返回客户既定的画面。
接下来我们该如何定义一个拦截器:
自定义一个拦截器如下:
1、实现Interceptor接口或者继承AbstractInterceptor抽象类。
2、创建一个Struts.xml文件进行定义拦截器。
3、在需要使用的Action中引用上述定义的拦截器,为了方便也可将拦截器定义为默认的拦截器(<default-interceptor-ref name="myStack"/>),
这样在不加特殊声明的情况下所有的Action都被这个拦截器拦截<param name="excludeMethods">loginView,login</param>。
①Interceptor接口声明三个方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
public class LoginInterceptor implements Interceptor { private Map< String ,Object> session = null; public void destroy() { } public void init() { } public String intercept(ActionInvocation actionInvocation) throws Exception { 8 Object myAction = actionInvocation.getAction(); if(myAction instanceof UserAction){ System.out.println("你访问的Action是UserAction,不要校验Session,否则死循环"); //放行 return actionInvocation.invoke(); }else{ System.out.println("你访问的Action是:"+myAction); } session = ActionContext.getContext().getSession(); Object user = session.get("user"); if (user!=null){ return actionInvocation.invoke(); }else{ return "login"; } } 注:该方法可以不加:< param name = "excludeMethods" >loginView,login</ param > |
②让它继承 MethodFilterInterceptor:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
public class LoginInterceptor extends MethodFilterInterceptor { private Map< String ,Object> session = null; protected String doIntercept(ActionInvocation actionInvocation) throws Exception { /* Object myAction = actionInvocation.getAction(); if(myAction instanceof UserAction){ System.out.println("你访问的Action是UserAction,不要校验Session,否则死循环"); //放行 return actionInvocation.invoke(); }else{ System.out.println("你访问的Action是:"+myAction); } */ session = ActionContext.getContext().getSession(); Object user = session.get("user"); if (user!=null){ return actionInvocation.invoke(); }else{ return "login"; } } } |
③UserAction继承ActionSupport 实现 ModelDriven<User>和SessionAware:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
public class UserAction extends ActionSupport implements ModelDriven< User >,SessionAware{ private Map< String ,Object> session = null; private User user = null; //驱动模型 public User getModel() { this.user = new User(); return this.user; } public void setSession(Map< String , Object> map) { this.session = map; } public String loginView(){ return "loginViewSuccess"; } public String login(){ if ("admin".equals(user.getUserName())&&"123456".equals(user.getUserPassword())){ session.put("user",user); return this.SUCCESS; }else{ return this.ERROR; } } } |
Struts.xml文件中:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
< struts > < package name = "myPackage" extends = "struts-default" > < interceptors > < interceptor name = "loginInterceptor" class = "com.nf.action.LoginInterceptor" ></ interceptor > < interceptor-stack name = "myStack" > < interceptor-ref name = "loginInterceptor" > <!--excludeMethods需要生效的话,自定义的拦截器,不能使用实现Interceptor接口,而是extends MethodFilterInterceptor--> < param name = "excludeMethods" >loginView,login</ param > <!--不用此行时 我们可以配合①使用拦截器--> </ interceptor-ref > < interceptor-ref name = "defaultStack" ></ interceptor-ref > </ interceptor-stack > </ interceptors > <!--配置一个默认拦截器,也就是所有的Action都必须使用--> < default-interceptor-ref name = "myStack" /> < global-results > < result name = "login" type = "redirectAction" >userAction_loginView</ result > </ global-results > <!--不写method,默认就是execute--> < action name = "indexAction" class = "com.nf.action.IndexAction" method = "execute" > < result name = "success" >/WEB-INF/jsp/index.jsp</ result > <!-- <interceptor-ref name="myStack"></interceptor-ref> --> <!--注释这里也可以放该代码 只不过每一个action都要放比较麻烦 <interceptor-ref name="loginInterceptor"></interceptor-ref> <interceptor-ref name="defaultStack"></interceptor-ref> --> </ action > < action name = "otherFunctionAction" class = "com.nf.action.OtherFunctionAction" > <!--不写name,默认就是success--> < result >/WEB-INF/jsp/otherFunction.jsp</ result > </ action > < action name = "userAction_*" class = "com.nf.action.UserAction" method = "{1}" > < result name = "loginViewSuccess" >/WEB-INF/jsp/loginView.jsp</ result > < result name = "error" >/WEB-INF/jsp/error.jsp</ result > < result name = "success" type = "redirectAction" >indexAction</ result > < allowed-methods >login,loginView</ allowed-methods > </ action > </ package > </ struts > |
其中,<param name="excludeMethods">loginView,login</param> 配置的过滤方法,意思是拦截器对其中的方法不起作用。在我这里,loginView是跳转到登录页面的方法。
login 是验证用户名和密码的方法,在其中会将通过验证的用户名放入session中。
总结:
1.在struts2 中,所有的拦截器都会继承 Interceptor 这个接口。
2.如果我们没有添加拦截器,struts2 会为我们添加默认拦截器。当然我们要是指定了拦截器,我们自己的拦截器就会取代默认的拦截器,
那么我们就不能享受默认拦截器提供的一些功能。所以,一般我会把默认拦截器也加上。
例如,在以上配置项中,action 里面再加上<interceptor-ref name="defaultStack"></interceptor-ref>
以上这篇Struts2拦截器 关于解决登录的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/wangpengpeng/archive/2017/10/10/7647599.html