我放了一个标签
<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) 不可用。”
任何人都可以帮我解决我所缺少的吗?