为什么即使一切正常也会出现此错误
这是我的index.jsp代码中的代码
<body>
<center><h1>SERVICE</h1>
<h2>Enter Service Details</h2>
<form:form method="POST" commandName="servDetForm" action="AddService">
<table style="appearance:dialog ">
<tr>
<td>Number</td>
<td><form:input path="xxx"/></td>
</tr>
<tr>
<td>Number</td>
<td><form:input path="xxx"/></td>
</tr>
<tr>
<td></td>
<td><form:button name="addService" value="Add Service">Add Service</form:button></td>
</tr>
</table>
</form:form>
</center>
</body>
我哪里错了?
答案 0 :(得分:0)
您正在向视图发送错误的实例。
@RequestMapping(value="/index", method=RequestMethod.GET)
public ModelAndView indexView(){
return new ModelAndView("index","servDetForm",new ServiceTb());
}
另外在你的Bean中需要使用camelCase表示法而不是snakecase。 camelcase vs snakecase解释
应该是 ItasTb 实体
将您的JSP更改为:
<form:form method="POST" modelAttribute="servDetForm">