我贴上标签

<form action="/emailConfig.do">


在我的jsp页面

将操作放在struts_config.xml文件中

    <action path="/emailConfig" type="a.b.EmailConfigAction" name="emailConfigForm"
          scope="request" validate="false">
        <forward name="success" path="/emailConfig.jsp" />
        <forward name="failure" path="/emailConfig.jsp" />
</action>


但是当我执行任何事件(按钮单击/链接单击)页面时,未显示,但出现异常

“请求的资源(/emailConfig.do)不可用。

谁能帮我解决我所缺少的吗?

最佳答案

已经解决了这个问题。我刚更换

 <form> tag with <html:form>


编码愉快! :)

07-26 01:52