码迷,mamicode.com
首页 > 其他好文 > 详细

Struts2的拦截器配置

时间:2019-04-02 21:24:16      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:引入   default   inter   ali   intercept   tor   str   name   package   

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的拦截器配置

标签:引入   default   inter   ali   intercept   tor   str   name   package   

原文地址:https://www.cnblogs.com/mqflive81/p/10645019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!