- 浏览: 238326 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
xchd:
分别在什么时候(情况下)用ThreadFactory、Exec ...
Executor线程池实例 -
mikey_5:
是不是没有写完啊
Executor线程池实例 -
xinyao:
楼主,你好,请问能给我发个源码吗,我要在一个页面能实时看到下载 ...
Android学习系列(19)--App离线下载 -
sdtzkj:
...
jasperReport 帮助文档 api -
shero_ys:
public class VrowsePicActivity ...
android handler 实现三步曲
一.理解拦截器
1. 拦截器是在防问某个方法,字段之前或之后实施拦截,并且拦截器是可插拔的,拦截器是AOP的一种实现.
2. 拦截器栈(Interceptor Stack)。拦截器栈就是将拦截器按一定的顺序联结成一条链。在访问被拦截的方法或字段时, 拦截器链中的拦截器就会按其之前定义的顺序被调用。
二.实现原理
Struts2拦截器的实现原理相对简单,当请求struts2的action时,Struts 2会查找配置文件,并根据其配置实例化相对的 拦截器对象,然后串成一个列表,最后一个一个地调用列表中的拦截器
三.拦截器的配置
1. 普通的拦截器
- <package name="default" extends="struts-default"><BR>
- <interceptors><BR>
- <interceptor name="拦截器名1" class="拦截器实现类"/><BR>
- <interceptor name="拦截器名2" class="拦截器实现类"/><BR>
- </interceptors><BR>
- <action name="login" class="com.Logon"><BR>
- <interceptor-ref name="defaultStack"/><BR>
- <interceptor-ref name="拦截器名1"/><BR>
- <interceptor-ref name="拦截器名2"/><BR>
- <result name="input">logon.jsp</result><BR>
- <result name="success">/index.jsp</result><BR>
- </action><BR>
- </package>
<package name="default" extends="struts-default"> <interceptors> <interceptor name="拦截器名1" class="拦截器实现类"/> <interceptor name="拦截器名2" class="拦截器实现类"/> </interceptors> <action name="login" class="com.Logon"> <interceptor-ref name="defaultStack"/> <interceptor-ref name="拦截器名1"/> <interceptor-ref name="拦截器名2"/> <result name="input">logon.jsp</result> <result name="success">/index.jsp</result> </action> </package>
2. 拦截器栈
- <package name="default" extends="struts-default"><BR>
- <interceptors><BR>
- <interceptor name="拦截器名1" class="拦截器实现类"/><BR>
- <interceptor name="拦截器名2" class="拦截器实现类"/><BR>
- <interceptor-stack name="myStack"><BR>
- <interceptor-ref name="拦截器名1"/><BR>
- <interceptor-ref name="拦截器名2"/><BR>
- </interceptor-stack><BR>
- </interceptors><BR>
- <action name="login" class="com.Logon"><BR>
- <interceptor-ref name="defaultStack"/><BR>
- <interceptor-ref name="myStack"/><BR>
- <result name="input">login.jsp</result><BR>
- <resultnameresultname="success" >/index.jsp</result><BR>
- </action><BR>
- </package><BR>
<package name="default" extends="struts-default"> <interceptors> <interceptor name="拦截器名1" class="拦截器实现类"/> <interceptor name="拦截器名2" class="拦截器实现类"/> <interceptor-stack name="myStack"> <interceptor-ref name="拦截器名1"/> <interceptor-ref name="拦截器名2"/> </interceptor-stack> </interceptors> <action name="login" class="com.Logon"> <interceptor-ref name="defaultStack"/> <interceptor-ref name="myStack"/> <result name="input">login.jsp</result> <resultname="success" >/index.jsp</result> </action> </package>
需要注意的是,如果为Action指定了一个拦截器,则系统默认的拦截器栈将会失去作用。为了继续使用默认拦截器,所以上面配置文件中手动引入了默认拦截器
四.自定义拦截器
1.直接或间接实现接口com.opensymphony.xwork2.interceptor.Interceptor。
2.或者继承类com.opensymphony.xwork2.interceptor.AbstractInterceptor
3.通过<interceptor>元素来定义拦截器
4.通过<interceptor-ref>元素来使用拦截器
五.使用拦截器实现权限控制
1.功能
使用自定义拦截器来完成用户权限的控制,当执行操作时,判断用户是否己经登陆,如果没有登陆跳转到登陆页面
2.拦截器类
- package com.interceptor;
- <BR>
- <BR>import com.opensymphony.xwork2.Action;
- <BR>import com.opensymphony.xwork2.ActionContext;
- <BR>import com.opensymphony.xwork2.ActionInvocation;
- <BR>import com.opensymphony.xwork2.interceptor.AbstractInterceptor;
- <BR>
- <BR>public class AuthorizationInterceptor extends AbstractInterceptor {
- <BR>
- <BR> private static final long serialVersionUID = 1L;
- <BR>
- <BR> @Override
- <BR> public String intercept(ActionInvocation actionInvocation) throws Exception {
- <BR>
- <BR> ActionContext actionContext = actionInvocation.getInvocationContext();
- <BR>
- <BR> Object user = actionContext.get("user");
- <BR>
- <BR> if(user != null){
- <BR> return actionInvocation.invoke();
- <BR> } else{
- <BR> actionInvocation.getInvocationContext().put("nav_title", "你还没有登陆,请先登陆");
- <BR> return Action.LOGIN;
- <BR> }
- <BR> }
- <BR>
- <BR>}
- <BR>
package com.interceptor; import com.opensymphony.xwork2.Action; import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.interceptor.AbstractInterceptor; public class AuthorizationInterceptor extends AbstractInterceptor { private static final long serialVersionUID = 1L; @Override public String intercept(ActionInvocation actionInvocation) throws Exception { ActionContext actionContext = actionInvocation.getInvocationContext(); Object user = actionContext.get("user"); if(user != null){ return actionInvocation.invoke(); } else{ actionInvocation.getInvocationContext().put("nav_title", "你还没有登陆,请先登陆"); return Action.LOGIN; } } }
2.配置
- <?xml version="1.0" encoding="UTF-8" ?><BR>
- <!DOCTYPE struts PUBLIC<BR>
- "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"<BR>
- "http://struts.apache.org/dtds/struts-2.0.dtd"><BR>
- <struts> <BR>
- <package name="user" extends="struts-default">
- <interceptors>
- <!-- 定义拦截器 -->
- <interceptor name="authority" class="com.interceptor.AuthorizationInterceptor"></interceptor>
- </interceptors><BR>
- <action name="user" class="com.UserAction"><BR>
- <!-- 使用拦截器 -->
- <interceptor-ref name="authority"/>
- <interceptor-ref name="defaultStack"/>
- <result name="succee">/logon/welcome.jsp</result><BR>
- <result name="login">/logon/logon.jsp</result>
- </action>
- </package>
- </struts><BR>
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <package name="user" extends="struts-default"> <interceptors> <!-- 定义拦截器 --> <interceptor name="authority" class="com.interceptor.AuthorizationInterceptor"></interceptor> </interceptors> <action name="user" class="com.UserAction"> <!-- 使用拦截器 --> <interceptor-ref name="authority"/> <interceptor-ref name="defaultStack"/> <result name="succee">/logon/welcome.jsp</result> <result name="login">/logon/logon.jsp</result> </action> </package> </struts>
访问http://localhost:8080/struts2-interceptor/user.action时,会判断用户是否登陆
六.方法拦截器
1.Struts2提供MethodFilterInterceptor类,该类是AbstractInerceptor的子类,可以实现对Action方法的拦截.
2. MethodFilterInterceptor中有两个方法
setExcludeMethods:排除需要过滤的方法
setIncludeMethods:设置需要过滤的方法
如果一个方法同时在excludeMethods和includeMethods中出现,则会被拦截
3.实现
拦截器
- package com.interceptor;
- <BR>
- <BR>import com.opensymphony.xwork2.ActionInvocation;
- <BR>import com.opensymphony.xwork2.interceptor.MethodFilterInterceptor;
- <BR>
- <BR>public class LogInterceptor extends MethodFilterInterceptor {
- <BR>
- <BR> private static final long serialVersionUID = 1L;
- <BR>
- <BR> private String name;
- <BR>
- <BR> @Override
- <BR> protected String doIntercept(ActionInvocation actionInvocation) throws Exception {
- <BR>
- <BR> System.out.println("拦截器名称:" + name);
- <BR> System.out.println("action:" + actionInvocation.getAction());
- <BR>
- <BR> return actionInvocation.invoke();
- <BR> }
- <BR>
- <BR> public String getName() {
- <BR> return name;
- <BR> }
- <BR>
- <BR> public void setName(String name) {
- <BR> this.name = name;
- <BR> }
- <BR>}
- <BR>
package com.interceptor; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.interceptor.MethodFilterInterceptor; public class LogInterceptor extends MethodFilterInterceptor { private static final long serialVersionUID = 1L; private String name; @Override protected String doIntercept(ActionInvocation actionInvocation) throws Exception { System.out.println("拦截器名称:" + name); System.out.println("action:" + actionInvocation.getAction()); return actionInvocation.invoke(); } public String getName() { return name; } public void setName(String name) { this.name = name; } }
action
- package com;<BR><BR>
- public class ManageAction {<BR><BR>
- public String execute(){
- System.out.println("execute....");<BR>
- return "succee";
- }<BR>
- public String search(){<BR>
- System.out.println("search....");
- return "succee";
- }
- public String add(){
- System.out.println("add....");
- return "succee";
- }
- }<BR>
package com; public class ManageAction { public String execute(){ System.out.println("execute...."); return "succee"; } public String search(){ System.out.println("search...."); return "succee"; } public String add(){ System.out.println("add...."); return "succee"; } }
struts.xml配置
- <action name="manage" class="com.ManageAction"><BR>
- <interceptor-ref name="log"><BR>
- <param name="name">日志拦截</param><BR>
- <!-- 设置需要拦截的方法,指定多个方法以逗号隔开 -->
- <param name="includeMethods">execute,add</param><BR>
- <!-- 设置不需要拦截的方法,execute在includeMethods中同时存在,execute会被拦截 --><BR>
- <param name="excludeMethods">search,execute</param>
- </interceptor-ref><BR>
- <result name="succee">/welcome.jsp</result>
- </action>
<action name="manage" class="com.ManageAction"> <interceptor-ref name="log"> <param name="name">日志拦截</param> <!-- 设置需要拦截的方法,指定多个方法以逗号隔开 --> <param name="includeMethods">execute,add</param> <!-- 设置不需要拦截的方法,execute在includeMethods中同时存在,execute会被拦截 --> <param name="excludeMethods">search,execute</param> </interceptor-ref> <result name="succee">/welcome.jsp</result> </action>
打开浏览器访问 http://localhost:8080/struts2-interceptor/manage.action
会报执行execute方法,会执行拦截器
拦截器名称:日志拦截
action:com.ManageAction@1a0ae6d
execute....
当访问 http://localhost:8080/struts2-interceptor/manage!search.action
执行search方法,不会执行拦截器
发表评论
-
WebWork深入浅出
2011-01-28 09:45 793前言 本篇文章并没有太多WebWork 的实战代码细节。本 ... -
struts2 标签
2011-01-04 10:24 936a a标签创建一个H ... -
sturts2 验证框架
2011-01-04 09:46 991Struts2验证框架验证用户注册 核心代码如下: 1.用户注 ... -
Struts2(Webwork2)一些实战开发技巧
2010-12-08 12:03 938一. <!----> 使用 ... -
Struts2.0显示Hibernate多表查询结果的方法
2010-12-08 11:35 1077假设有A表、B表,HQL类似如下:select A.col ... -
struts1和struts2的区别
2010-03-02 10:02 1285Struts1和Struts2的区别和 ... -
struts2.0之struts.xml详解
2010-02-02 16:21 777<!DOCTYPE struts PUBLIC &quo ...
相关推荐
在Struts2中,拦截器的使用主要基于两个方面:配置文件中的声明式使用和注解的编程式使用。首先,我们来看看配置文件中的声明式使用。在struts.xml或类似的配置文件中,你可以通过`<interceptor>`元素定义拦截器,并...
Struts2 中拦截器与过滤器的区别及执行顺序 Struts2 中的拦截器(Interceptor)和过滤器(Filter)是两个不同的概念,虽然它们都可以影响请求的处理过程,但它们的作用域、执行顺序和实现机制都有所不同。 拦截器...
拦截器栈是Struts2中拦截器的组织方式,它将多个拦截器按照预设的顺序组合成一个链式结构。在Action的执行过程中,这些拦截器会被依次调用,每个拦截器都有机会在Action方法执行前后进行干预。拦截器栈的顺序至关...
Struts2拦截器(Interceptor) Struts2拦截器(Interceptor)
在Struts2中,拦截器(Interceptors)扮演着核心角色,增强了框架的功能和灵活性。这篇文章将深入探讨Struts2拦截器的概念、工作原理以及如何在实际应用中使用它们。 **一、什么是Struts2拦截器** 拦截器是基于AOP...
解决Struts2中的中文乱码。该代码是用作Struts2的拦截器中
2. **拦截器链**:在Struts2中,多个拦截器可以形成一个拦截器链,每个拦截器按照定义的顺序依次执行。如果所有拦截器都允许Action执行,那么Action的结果将被传递到下一个拦截器,直到整个链执行完毕。 ### 二、...
在Struts2中,拦截器(Interceptor)是一个至关重要的概念,它允许开发者在动作执行前后插入自定义逻辑,比如权限检查、日志记录、性能监控等。本文将深入探讨如何使用Struts2实现拦截器,以及如何配置拦截器来实现...
首先,理解拦截器的定义:拦截器是AOP(面向切面编程)的一个概念,在Struts2中,拦截器是基于Java的动态代理机制实现的。它们是一系列实现了`Interceptor`接口的类,可以在Action执行前后插入额外的行为。这些行为...
在Struts2中,拦截器是基于Java的动态AOP(面向切面编程)实现的,它可以在Action调用前后插入额外的逻辑,比如日志记录、权限验证、事务管理等。拦截器通过配置文件或者注解与Action关联,形成一个拦截器栈,每个...
在Struts2中,拦截器(Interceptor)扮演着核心角色,它们允许开发者在Action执行前后插入自定义的逻辑,如日志、权限检查、事务管理等。现在我们将深入探讨Struts2的拦截器机制及其实例应用。 ### 一、Struts2拦截...
在Struts2中,拦截器(Interceptor)扮演着至关重要的角色,它允许开发者在动作执行前后插入自定义逻辑,如日志记录、权限验证等。在本案例中,我们将深入探讨如何使用Struts2拦截器实现登录权限验证,同时结合...
在Struts2中,拦截器是实现业务逻辑控制和增强功能的重要机制,它们扮演着类似于AOP(面向切面编程)的角色,允许在动作执行前后插入自定义逻辑。在这个“Struts2拦截器实现权限控制demo”中,我们将深入探讨如何...
拦截器不仅在Struts2中扮演着重要角色,更是整个框架灵活性与扩展性的基石。本文将深入探讨Struts2拦截器的基本概念、工作原理以及其实现机制,并结合实际应用场景来展示如何利用拦截器提高代码的复用性与可维护性。...
在Struts2中,拦截器(Interceptor)是核心功能之一,用于增强应用的功能和处理业务逻辑。拦截器是基于AOP(面向切面编程)的概念,可以在动作执行前后插入额外的操作,比如日志记录、权限检查、数据验证等。 标题...
在Struts2中,拦截器(Interceptor)扮演着核心角色,它们允许开发者在动作执行前后插入自定义的逻辑,如日志、权限检查、数据验证等。本示例将探讨如何在Struts2中使用拦截器。 首先,我们需要理解Struts2拦截器的...
struts2常用拦截器,struts2经常用到的拦截器,熟悉熟悉
在Struts2中,拦截器就像过滤器一样工作,通过链式调用在动作执行前后进行预处理和后处理。 首先,我们来理解一下拦截器的基本概念。拦截器是在Action调用之前和之后执行的一段代码,可以用来做日志记录、权限检查...
拦截器是Struts2中的一个关键概念,它允许开发者在Action执行前后插入自定义的处理逻辑。例如,可以使用拦截器实现登录验证、日志记录、性能监控等功能。拦截器通过链式结构串联起来,形成一个执行栈,每个Action...
该例子为struts2注解与拦截器demo,利用myEclipse8.5开发,导入刚才后,自动加载所需struts2的jar包,可以直接运行,是初学struts2注解、拦截器很好的例子,保证10分钟学会2种技术,愿意分享给大家。