Struts2 Interceptor 配置(3种方法)

  1. 普通模式
    <struts>
        <package name="struts2" extends="struts-default">
            <interceptors>
                <interceptor name="myInterceptor" class="com.llb.MyInterceptor"></interceptor>
            </interceptors>
            <action name="register" class="com.llb.RegisterAction">
                <result name="input">/register.jsp</result>
                <result>/result.jsp</result>
                <!-- 在自定义interceptor并进行引用时, 系统会覆盖掉默认的interceptor-stack(defaultStack), 为了保证系统默认的defaultStack不受影响, 我们需要显式的将其引入 -->
                <!-- 注意两个interceptor-ref的顺序, 顺序不同, 执行效果也不同: 先配置的先执行/后配置的先退出(先进后出) -->
                <interceptor-ref name="defaultStack"></interceptor-ref>
                <interceptor-ref name="myInterceptor"></interceptor-ref>
            </action>
        </package>
    </struts>
     
  2. 继承模式

    此模式是先将某个包下所要用到的拦截器统一进行配置,而后再在需要拦截的action里面引用定义好的拦截器即可

    <struts>
        <package name="struts2" extends="struts-default">
            <interceptors>
                <interceptor name="myInterceptor" class="com.llb.MyInterceptor"></interceptor>
                <interceptor-stack name="myInterceptorStack">
                    <interceptor-ref name="myInterceptor"></interceptor-ref>
                    <interceptor-ref name="defaultStack"></interceptor-ref>
                </interceptor-stack>
            </interceptors>
            <action name="register" class="com.llb.RegisterAction">
                <result name="input">/register.jsp</result>
                <result>/result.jsp</result>
                <interceptor-ref name="myInterceptorStack"></interceptor-ref>
            </action>
        </package>
    </struts>
  3. 修改默认拦截器模式
    <struts>
        <package name="struts2" extends="struts-default">
            <interceptors>
                <interceptor name="myInterceptor" class="com.llb.MyInterceptor"></interceptor>
                <interceptor-stack name="myInterceptorStack">
                    <interceptor-ref name="myInterceptor"></interceptor-ref>
                    <interceptor-ref name="defaultStack"></interceptor-ref>
                </interceptor-stack>
            </interceptors>
            <!-- 此默认interceptor是针对所有action的 -->
            <!-- 如果某个action中引入了interceptor, 则在这个action中此默认interceptor就会失效 -->
            <default-interceptor-ref name="myInterceptorStack"></default-interceptor-ref>
            <action name="register" class="com.llb.RegisterAction">
                <result name="input">/register.jsp</result>
                <result>/result.jsp</result>
            </action>
        </package>
    </struts>
     

猜你喜欢

转载自linbaolee.iteye.com/blog/2077660