0
<interceptor-stack name="DefaultTEST">
<interceptor-ref name="exception" />
<!-- some more interceptors go in here -->
<interceptor-ref name="debugging" />
</interceptor-stack>
<default-interceptor-ref name="DefaultTEST" />
<action name="welcome">
<result type="tiles">WELCOME_PAGE</result>
</action>
<action name="">
<result ...>...</result>
</action>
... <!-- more actions -->
だから私の質問は歓迎アクションのためにいくつかの他のインターセプタ(またはインターセプタスタック)は、デフォルトの1ながら読み込むことができるように、デフォルトインターセプタスタックを上書きする方法ですそうではありません。Struts2の
他のスタックを定義し、アクション構成で使用します。何が問題ですか? –
@AleksandrMスタックに加えて、その特定のアクションに別のスタックを指定すると、デフォルトのスタックもトリガーされますか? – Will