关于struts中的表单元素- Form bean not specified on mapping for action: "helloa.do"报错
今天测试struts时仿照书上写了一个小的表单提交代码
1 <html:form action="helloa.do" method="post"> 2 <html:submit value="提交"></html:submit> 3 </html:form>
报 Form bean not specified on mapping for action: "helloa.do"错。
struts-config.xml中的配置如下:
<action-mappings>
<action path="/helloa"
type="action.HelloAction"
scope="request"
input="success.jsp">
<forward name="s" path="/success.html"/>
</action>
</action-mappings>
这里没有用到ActionForm,所以没有加name属性,这个应该没有什么影响。
后来更改前台代码如下:
<form action="helloa.do" method="post"> <html:submit value="提交"></html:submit> </form>
页面成功跳转,可能是<html:form>标记的原因,遂此记。
如果你真心觉得文章写得不错,而且对你有所帮助,那就不妨小小打赏一下吧,如果囊中羞涩,不妨帮忙“推荐"一下,您的“推荐”和”打赏“将是我最大的写作动力!
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接.