我有一个表格,我将动作 pf 设置为 /translate
<form name="frm" action="/translate">
...
</form>
并像这样在 struts-config.xml 中映射 /translate URL:
<action-mappings>
<action name="TranslatorBean" path="/translate" scope="request" type="com.myapp.struts.TranslateCtrl" validate="false">
<forward name="success" path="/welcomeStruts.jsp"/>
</action>
</action-mappings>
但是当我提交表单时,我收到 404 错误!!