Struts2的拦截器配置

Posted mqflive81

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2的拦截器配置相关的知识,希望对你有一定的参考价值。

1:引入默认的时间拦截器

    <!-- 引入拦截器和引入拦截器栈一样的语法 -->

     <interceptor-ref name="defaultStack"></interceptor-ref>

            <!-- 引入时间拦截器 -->

     <interceptor-ref name="timer"></interceptor-ref>

 

 

2:自定义时间拦截器的引(引入package标签中)

<!-- 自定义拦截器栈 -->

     <interceptors>

<interceptor-stack name="myStack">

<!-- 配置时间拦截器 -->

     <interceptor-ref name="timer"></interceptor-ref>

     <!-- 引入默认的拦截器 -->

     <interceptor-ref name="defaultStack"></interceptor-ref>

</interceptor-stack>     

     </interceptors> 

ation中引入自定义的拦截器栈

<interceptor-ref name="myStack"></interceptor-ref>

 

3: 自定义拦截器栈的引入

<!-- 自定义拦截器栈 -->

     <interceptors>

     <!-- 自定义拦截器类 -->

     <interceptor name="my01" class="com.baidu.intercept.MyIntercept01"></interceptor>

    

     <!-- 引入拦截器 -->

<interceptor-stack name="myStack">

<interceptor-ref name="my01"></interceptor-ref>

<!-- 引入默认的拦截器 -->

     <interceptor-ref name="defaultStack"></interceptor-ref>

</interceptor-stack>     

 </interceptors> 

 

ation中引入自定义的拦截器栈

<interceptor-ref name="myStack"></interceptor-ref>

 

也可将<interceptor-ref name="myStack"></interceptor-ref>此配置转化成<default-interceptor-ref name="myStack"></default-interceptor-ref>

以上是关于Struts2的拦截器配置的主要内容,如果未能解决你的问题,请参考以下文章

Struts2配置拦截器,struts2加载常量时的搜索顺序

struts2中拦截器的简介与配置使用

Struts2

Struts2-整理笔记拦截器拦截器配置

struts2框架之自定义拦截器和配置

Struts2 XML配置详解