`
cppmayi
  • 浏览: 25768 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Struts2学习笔记8(Intercepter2)

阅读更多

什么是拦截器
拦截器,在AOP(Aspect-Oriented Programming)中用于在某个方法或字段被访问之前,进行拦截然后在之前或之后加入某些操作。拦截是AOP的一种实现策略。
在Webwork的中文文档的解释为——拦截器是动态拦截Action调用的对象。它提供了一种机制可以使开发者可以定义在一个action执行的前后执行的代码,也可以在一个action执行前阻止其执行。同时也是提供了一种可以提取action中可重用的部分的方式。
谈到拦截器,还有一个词大家应该知道——拦截器链(Interceptor Chain,在Struts 2中称为拦截器栈Interceptor Stack)。拦截器链就是将拦截器按一定的顺序联结成一条链。在访问被拦截的方法或字段时,拦截器链中的拦截器就会按其之前定义的顺序被调用。
实现原理
Struts 2的拦截器实现相对简单。当请求到达Struts 2的ServletDispatcher时,Struts 2会查找配置文件,并根据其配置实例化相对的拦截器对象,然后串成一个列表(list),最后一个一个地调用列表中的拦截器,如图1所示。
图1 拦截器调用序列图
已有的拦截器
Struts 2已经为您提供丰富多样的,功能齐全的拦截器实现。大家可以到struts2-all-2.0.1.jar或struts2-core-2.0.1.jar包的struts-default.xml查看关于默认的拦截器与拦截器链的配置。
在本文使用是Struts 2的最新发布版本2.0.1。需要下载的朋友请点击以下链接:http://apache.justdn.org/struts/binaries/struts-2.0.1-all.zip
以下部分就是从struts-default.xml文件摘取的内容:
< interceptorname ="alias" class ="com.opensymphony.xwork2.interceptor.AliasInterceptor" /> < interceptorname ="autowiring" class ="com.opensymphony.xwork2.spring.interceptor.ActionAutowiringInterceptor" /> < interceptorname ="chain" class ="com.opensymphony.xwork2.interceptor.ChainingInterceptor" /> < interceptorname ="conversionError" class ="org.apache.struts2.interceptor.StrutsConversionErrorInterceptor" /> < interceptorname ="createSession" class ="org.apache.struts2.interceptor.CreateSessionInterceptor" /> < interceptorname ="debugging" class ="org.apache.struts2.interceptor.debugging.DebuggingInterceptor" /> < interceptorname ="external-ref" class ="com.opensymphony.xwork2.interceptor.ExternalReferencesInterceptor" /> < interceptorname ="execAndWait" class ="org.apache.struts2.interceptor.ExecuteAndWaitInterceptor" /> < interceptorname ="exception" class ="com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor" /> < interceptorname ="fileUpload" class ="org.apache.struts2.interceptor.FileUploadInterceptor" /> < interceptorname ="i18n" class ="com.opensymphony.xwork2.interceptor.I18nInterceptor" /> < interceptorname ="logger" class ="com.opensymphony.xwork2.interceptor.LoggingInterceptor" /> < interceptorname ="model-driven" class ="com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor" /> < interceptorname ="scoped-model-driven" class ="com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor" /> < interceptorname ="params" class ="com.opensymphony.xwork2.interceptor.ParametersInterceptor" /> < interceptorname ="prepare" class ="com.opensymphony.xwork2.interceptor.PrepareInterceptor" /> < interceptorname ="static-params" class ="com.opensymphony.xwork2.interceptor.StaticParametersInterceptor" /> < interceptorname ="scope" class ="org.apache.struts2.interceptor.ScopeInterceptor" /> < interceptorname ="servlet-config" class ="org.apache.struts2.interceptor.ServletConfigInterceptor" /> < interceptorname ="sessionAutowiring" class ="org.apache.struts2.spring.interceptor.SessionContextAutowiringInterceptor" /> < interceptorname ="timer" class ="com.opensymphony.xwork2.interceptor.TimerInterceptor" /> < interceptorname ="token" class ="org.apache.struts2.interceptor.TokenInterceptor" /> < interceptorname ="token-session" class ="org.apache.struts2.interceptor.TokenSessionStoreInterceptor" /> < interceptorname ="validation" class ="com.opensymphony.xwork2.validator.ValidationInterceptor" /> < interceptorname ="workflow" class ="com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor" /> < interceptorname ="store" class ="org.apache.struts2.interceptor.MessageStoreInterceptor" /> < interceptorname ="checkbox" class ="org.apache.struts2.interceptor.CheckboxInterceptor" /> < interceptorname ="profiling" class ="org.apache.struts2.interceptor.ProfilingActivationInterceptor" />
配置和使用拦截器
在struts-default.xml中已经配置了以上的拦截器。如果您想要使用上述拦截器,只需要在应用程序struts.xml文件中通过“<include file="struts-default.xml" />”将struts-default.xml文件包含进来,并继承其中的struts-default包(package),最后在定义Action时,使用“<interceptor-ref name="xx" />”引用拦截器或拦截器栈(interceptor stack)。一旦您继承了struts-default包(package),所有Action都会调用拦截器栈 ——defaultStack。当然,在Action配置中加入“<interceptor-ref name="xx" />”可以覆盖defaultStack。
下面是关于拦截器timer使用的例子。首先,新建Action类tuotrial/TimerInterceptorAction.java,内容如下:
package tutorial; import com.opensymphony.xwork2.ActionSupport; public class TimerInterceptorActionextends ActionSupport{    @Override     public String execute(){         try {             // 模拟耗时的操作            Thread.sleep( 500 );        }catch (Exception e){            e.printStackTrace();        }         return SUCCESS;    }}
配置Action,名为Timer,配置文件如下:
<! DOCTYPE struts PUBLIC        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"        "http://struts.apache.org/dtds/struts-2.0.dtd" > < struts >    < includefile ="struts-default.xml" />       < packagename ="InterceptorDemo" extends ="struts-default" >        < actionname ="Timer" class ="tutorial.TimerInterceptorAction" >            < interceptor-refname ="timer" />            < result > /Timer.jsp </ result >        </ action >    </ package > </ struts >
至于Timer.jsp可以随意写些什么到里面。发布运行应用程序,在浏览器的地址栏键入http://localhost:8080/Struts2_Interceptor/Timer.action,在出现Timer.jsp页面后,查看服务器的后台输出。
2006 - 12 - 6 14 : 27 : 32 com.opensymphony.xwork2.interceptor.TimerInterceptor doLog信息: Executed action[ //Timer!execute ] took2859 ms.
在您的环境中执行Timer!execute的耗时,可能上述的时间有些不同,这取决于您PC的性能。但是无论如何,2859 ms与500 ms还是相差太远了。这是什么原因呢?其实原因是第一次加载Timer时,需要进行一定的初始工作。当你重新请求Timer.action时,以上输出会变为:
2006 - 12 - 6 14 : 29 : 18 com.opensymphony.xwork2.interceptor.TimerInterceptor doLog信息: Executed action[ //Timer!execute ] took500 ms.
OK,这正是我们期待的结果。上述例子演示了拦截器timer的用途——用于显示执行某个action方法的耗时,在我们做一个粗略的性能调试时,这相当有用。
自定义拦截器
作为“框架(framework)”,可扩展性是不可或缺的,因为世上没有放之四海而皆准的东西。虽然,Struts 2为我们提供如此丰富的拦截器实现,但是这并不意味我们失去创建自定义拦截器的能力,恰恰相反,在Struts 2自定义拦截器是相当容易的一件事。

大家在开始着手创建自定义拦截器前,切记以下原则:拦截器必须是无状态的,不要使用在API提供的ActionInvocation之外的任何东西。
要求拦截器是无状态的原因是Struts 2不能保证为每一个请求或者action创建一个实例,所以如果拦截器带有状态,会引发并发问题。
所有的Struts 2的拦截器都直接或间接实现接口com.opensymphony.xwork2.interceptor.Interceptor。除此之外,大家可能更喜欢继承类com.opensymphony.xwork2.interceptor.AbstractInterceptor。
以下例子演示通过继承AbstractInterceptor,实现授权拦截器。
首先,创建授权拦截器类tutorial.AuthorizationInterceptor,代码如下:
package tutorial; import java.util.Map; import com.opensymphony.xwork2.Action; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.interceptor.AbstractInterceptor; public class AuthorizationInterceptorextends AbstractInterceptor{    @Override     public String intercept(ActionInvocation ai)throws Exception{        Map session= ai.getInvocationContext().getSession();        String role= (String) session.get( " ROLE " );         if ( null != role){            Object o= ai.getAction();             if (oinstanceof RoleAware){                RoleAware action= (RoleAware) o;                action.setRole(role);            }             return ai.invoke();        }else {             return Action.LOGIN;        }           } }
以上代码相当简单,我们通过检查session是否存在键为“ROLE”的字符串,判断用户是否登陆。如果用户已经登陆,将角色放到Action中,调用Action;否则,拦截直接返回Action.LOGIN字段。为了方便将角色放入Action,我定义了接口tutorial.RoleAware,代码如下:
package tutorial; public interface RoleAware{     void setRole(String role);}
接着,创建Action类tutorial.AuthorizatedAccess模拟访问受限资源,它作用就是通过实现RoleAware获取角色,并将其显示到ShowUser.jsp中,代码如下:
package tutorial; import com.opensymphony.xwork2.ActionSupport; public class AuthorizatedAccessextends ActionSupportimplements RoleAware{     private String role;         public void setRole(String role){         this .role= role;    }         public String getRole(){         return role;    }     @Override     public String execute(){         return SUCCESS;    }}
以下是ShowUser.jsp的代码:
<% @ page  contentType = " text/html; charset=UTF-8 " %> <% @taglib prefix = " s " uri = " /struts-tags " %> < html > < head >    < title > Authorizated User </ title > </ head > < body >    < h1 > Your role is:< s:propertyvalue ="role" /></ h1 > </ body > </ html >
然后,创建tutorial.Roles初始化角色列表,代码如下:
package tutorial; import java.util.Hashtable; import java.util.Map; public class Roles{     public Map < String, String > getRoles(){        Map < String, String > roles= new Hashtable < String, String > ( 2 );        roles.put( " EMPLOYEE " ," Employee " );        roles.put( " MANAGER " ," Manager " );         return roles;    }}
接下来,新建Login.jsp实例化tutorial.Roles,并将其roles属性赋予<s:radio>标志,代码如下:
<% @ page  contentType = " text/html; charset=UTF-8 " %> <% @taglib prefix = " s " uri = " /struts-tags " %> < html > < head >    < title > Login </ title > </ head > < body >    < h1 > Login </ h1 >     Please select a role below:   < s:beanid ="roles" name ="tutorial.Roles" />    < s:formaction ="Login" >        < s:radiolist ="#roles.roles" value ="'EMPLOYEE'" name ="role" label ="Role" />        < s:submit/>    </ s:form > </ body > </ html >
创建Action类tutorial.Login将role放到session中,并转到Action类tutorial.AuthorizatedAccess,代码如下:
package tutorial; import java.util.Map; import org.apache.struts2.interceptor.SessionAware; import com.opensymphony.xwork2.ActionSupport; public class Loginextends ActionSupportimplements SessionAware{     private String role;         private Map session;     public String getRole(){         return role;    }       public void setRole(String role){         this .role= role;    }         public void setSession(Map session){         this .session= session;    }     @Override     public String execute(){        session.put( " ROLE " , role);         return SUCCESS;    }   }
最后,配置struts.xml文件,内容如下:
<! DOCTYPE struts PUBLIC        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"        "http://struts.apache.org/dtds/struts-2.0.dtd" > < struts >    < includefile ="struts-default.xml" />       < packagename ="InterceptorDemo" extends ="struts-default" >        < interceptors >            < interceptorname ="auth" class ="tutorial.AuthorizationInterceptor" />        </ interceptors >        < actionname ="Timer" class ="tutorial.TimerInterceptorAction" >            < interceptor-refname ="timer" />            < result > /Timer.jsp </ result >        </ action >        < actionname ="Login" class ="tutorial.Login" >            < resulttype ="chain" > AuthorizatedAccess </ result >        </ action >        < actionname ="AuthorizatedAccess" class ="tutorial.AuthorizatedAccess" >            < interceptor-refname ="auth" />            < resultname ="login" > /Login.jsp </ result >            < resultname ="success" > /ShowRole.jsp </ result >        </ action >    </ package > </ struts >
发布运行应用程序,在浏览器地址栏中输入:http://localhost:8080/Struts2_Interceptor/AuthorizatedAccess.action。由于此时,session还没有键为“ROLE”的值,所以返回Login.jsp页面,如图2所示:
图2 Login.jsp
选中Employee,点击Submit,出现图3所示页面:
图3 ShowRole.jsp
总结
拦截器是Struts 2比较重要的一个功能。通过正确地使用拦截器,我们可以编写高可复用的代码。

 

分享到:
评论

相关推荐

    Struts2Day2

    `Struts2Day2_intercepter`指的是Struts2的核心特性之一——拦截器。拦截器是Struts2处理请求的一种机制,它们按照预定义的顺序执行,可以用于实现如日志记录、权限验证、事务管理等功能。通过自定义拦截器,开发者...

    struts2 intercepter

    Struts2 Interceptor是Java Web开发中非常关键的一个概念,它是Apache Struts2框架的核心组成部分。Struts2是一个基于Model-View-Controller (MVC)架构模式的开源框架,用于构建企业级的Java web应用程序。...

    Struts2的工作原理和流程

    8 一旦Action执行完毕,ActionInvocation负责根据struts.xml中的配置找到对应的返回结果。返回结果通常是(但不总是,也可 能是另外的一个Action链)一个需要被表示的JSP或者FreeMarker的模版。在表示的过程中可以...

    达内培训机密资料_struts2_day02(2)

    根据提供的文件信息,我们可以归纳出以下相关...这些内容不仅涵盖了Struts2的基础概念,还涉及到了OGNL表达式的使用、ValueStack的管理以及分页功能的具体实现方法等,对于学习和实践Struts2都是非常有价值的参考资料。

    struts2拦截器

    最全的InterCepter的基础,面向对象AOP的透彻分析

    Spring boot+Mybatis+Mysql+Swagger+filter与intercepter整合

    Spring boot+Mybatis+Mysql+Swagger整合,包括spring boot下创建过滤器filter与intercepter拦截器,使用Intellij idea创建工程,测试OK

    Struts2的配置 struts.xml Action详解

    Struts2 的配置 struts.xml Action 详解 Struts2 框架是一个基于 Java 语言的 Web 应用程序框架,它提供了一个灵活的架构,允许开发者快速构建基于 Web 的应用程序。在 Struts2 框架中,struts.xml 文件扮演着核心...

    Struts2.1.6+Spring2.0+Hibernate3.1

    Struts2是一个开源的Web框架,它是Struts1的下一代版本,基于Intercepter(拦截器)模式,提供了更为灵活的配置机制,并且与许多其他框架兼容。Struts2.1.6是该框架的一个成熟版本,支持多种插件和功能扩展。 #### ...

    struts2拦截器demo1

    (2)拦截器组件可以继承AbstractIntercepter类(实现了Intercepter接口)。 (3)拦截器组件可以继承MethodFilterIntercepter类(继承自AbstractIntercepter),增加了方法过滤功能(上面两种方式是拦截所有方法,这个...

    Postman Intercepter v1.1.2

    Postman用的拦截器,可以自动获取cookie并填充到Postman。直接解压,然后用Chrome内核的浏览器加载已解压的插件。 使用方法,详见:https://blog.csdn.net/cjs1534717040/article/details/124289171

    log-intercepter.7z

    2你可以任意包装你的出参,比如加上消耗的时间,添加一个唯一的uuid等等,同时这些东西都是由拦截器提供的功能。这些功能也可以做成配置化,比如你那些接口不需要这样的包装,在yml中配置一下,就可以了。 demo已经...

    postman interceptor

    2. **证书管理**:对于进行SSL/TLS拦截和调试,Interceptor可以生成并安装自签名证书,使得开发者可以查看加密的通信内容。这对于测试安全相关的API或处理HTTPS请求尤其有用。 3. **无头模式支持**:Interceptor...

    Heltec-Intercepter

    Heltec拦截器 有关详细信息,请参见操纵杆拦截器 Connect pins GND - GND 3.3v - 3.3v 14 - 14 12 - 12 重新映射了14和12以进行串行通信。 是的-将14连接到14-两个程序使用不同的引脚进行发送和接收,因此无需...

    Postman Interceptor 0.2.28

    Google插件:Sends requests fired through the Postman chrome app.

    Java servlet、filter、listener、interceptor之间的区别和联系

    Interceptor(拦截器)是AOP(面向切面编程)的一种实现,常用于MVC框架如Spring MVC和Struts2中。Interceptor可以在请求到达Controller(控制器)之前或之后执行,可以理解为一种预处理和后处理机制。与Filter不同...

    Flume配置文件kafkaSource

    Flume配置文件kafkaSource 包含Intercepter,包含正则表达式。

    postman+interceptor压缩包

    免费Postman和Postman interceptor压缩包,Postman为文件夹,直接选择扩展程序中的 加载已解压的扩展程序 ,选择解压后的postman文件夹即可,postman-interceptor为crx文件,直接拖入到chrome://extensions/中即可

    Android渗透测试工具包

    Android渗透测试工具包

Global site tag (gtag.js) - Google Analytics