2

我需要使用struts2显示进度条或等待页面,等待页面可以工作,但是一旦显示等待页面,它就不会重定向到成功页面,尽管过程已完成并且可以显示结果(我已经使用System.out.println)

<interceptors>
<interceptor name="AuthenticationInterceptor" 
            class="com.funontour.interceptors.AuthenticationInterceptor"/>

     <interceptor-stack name="secureStack">
       <interceptor-ref name="AuthenticationInterceptor"/>
           <interceptor-ref name="defaultStack"/>
     </interceptor-stack>

     <interceptor-stack name="waitStack">
       <interceptor-ref name="defaultStack"/>
           <interceptor-ref name="execAndWait"/>
      </interceptor-stack>

   </interceptors>


<action name="Process" class="application.processAction" method="Process">
    <interceptor-ref name="waitStack"/>
    <result name="SUCCESS" type="tiles">SuccessPage</result>
    <result name="wait" type="tiles">waitPage</result>
</action>
4

1 回答 1

1

你是用 javascript 还是用 更新你的页面http-equiv="refresh"?有关示例,请参见http://struts.apache.org/2.x/docs/execute-and-wait-interceptor.html

于 2012-09-26T13:36:07.973 回答