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