サンプルの 2 つの xml を次に示します。
email.xml:
<action name="mailSelect" class="com.my.EmailAction">
<result name="success">mailSelect.jsp</result>
</action>
email.xml で定義された同じメソッド呼び出しを別の xml で使用したいと考えています。
another.xml:
<action name="mailSelect" class="com.my.EmailAction">
<result name="success">/email/mailSelect.jsp</result>
</action>
私が呼び出そうとしたとき、呼び出されたアクションhttp://localhost:8080/test/web/another/mailSelect
は正しいのではなくhttp://localhost:8080/test/web/email/mailSelect
.
別のxmlで同じメソッドを再利用する方法はありますか?