如何在struts2中显示进度条

时间:2012-09-22 06:53:22

标签: jsp struts2

我需要使用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>

1 个答案:

答案 0 :(得分:1)

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