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 に答える