zoukankan      html  css  js  c++  java
  • struts2 拦截器配置

    <!--以下代码放在Struts的配置文件里-->

    <package name="wapMemberPackage" extends="struts-default">
            <!-- Defined myself interceptors -->
            <interceptors>
                <interceptor name="paginationInterceptor" class="com.juming.interceptor.PaginationInterceptor"/>
                <interceptor name="frontMemberInterceptor" class="com.juming.interceptor.FrontMemberInterceptor"/> //拦截器类
                <interceptor-stack name="MyDefaultInterceptor">
                    <interceptor-ref name="defaultStack" />
                    <interceptor-ref name="paginationInterceptor" />
                    <interceptor-ref name="frontMemberInterceptor" />
                </interceptor-stack>
            </interceptors>
            <default-interceptor-ref name="MyDefaultInterceptor" />
            <global-results> //全局返回值 必须放在所有action之上
                <result name="login">/WEB-INF/jsp/template/wap/login.jsp</result>
                <result name="error">/WEB-INF/jsp/template/wap/error.jsp</result>
            </global-results>
            <action name="wapm_*" method="{1}" class="com.juming.action.frontMemberAction">
                <result name="success">/WEB-INF/jsp/template/wap/index.jsp</result>
            </action>
        </package>

  • 相关阅读:
    Perforce笔记
    Lumia 800 无法正常开机
    Windows service 中出现Set ServiceLogin 对话框
    华为要求七千员工先辞职再竞岗 补偿费超10亿
    BLOG新址:http://longware.spaces.live.com
    家装(2)
    解脱
    论持久战
    有感于软件项目测试
    THE POEM AS A GIFT FOR MY GF'S BIRTHDAY
  • 原文地址:https://www.cnblogs.com/wdlove/p/4499733.html
Copyright © 2011-2022 走看看