ExecAndWait - 扩展ExecuteAndWaitInterceptor

时间:2013-08-01 11:54:58

标签: spring struts2 spring-security interceptor interceptorstack

您是否有人成功扩展ExecuteAndWaitInterceptor并让您的网络应用程序使用它? 我跟着this example,但我的拦截器永远不会被访问。这些类需要以特定的方式命名吗?

我相信我需要扩展它,因为当我尝试在我的操作中运行SecurityContextHolder.getContext()时,身份验证为空。我的想法是在beforeInvocation()方法中运行它。

有什么想法吗?

谢谢大家!

更新:罗曼C.的评论使其成功!我将拦截器添加到<interceptors>区域。这是有效的struts.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <package name="test" extends="struts-default,json-default" namespace="/test">

        <interceptors>

            <interceptor name="myExecAndWaitInterceptor" class="xx.xxx.xxxx.action.FailureAvailabilityRateExecuteAndWaitInterceptor">
                <param name="delay">1000</param>
                <param name="delaySleepInterval">500</param>
            </interceptor>

            <interceptor-stack name="newStack">
                <interceptor-ref name="defaultStack" />
                <interceptor-ref name="myExecAndWaitInterceptor"/>
            </interceptor-stack>

        </interceptors>


        <action name="failureAvailabilityRate" class="xx.xxx.xxxx.action.FailureAvailabilityRateAction">
            <interceptor-ref name="newStack"/>
            <result name="wait">/jsp/test/wait.jsp</result>
            <result name="input">/jsp/test/failureAvailabilityRate.jsp</result>
            <result name="success">/jsp/test/failureAvailabilityRate.jsp</result>
        </action>

    </package>
</struts>

0 个答案:

没有答案