我放了一个标签
<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)不可用。”
任何人都可以帮我解决我错过的问题吗?
答案 0 :(得分:1)
已经解决了这个问题。我刚换了
<form> tag with <html:form>
快乐的编码! :)