我正在spring-mvc中实现表单验证。我有与讨论的here相同的解决方案,效果很好。但是我想在该字段内而不是在该字段旁设置错误消息。
表格
<form:form method="POST" action="/regStoreSuccessful"
commandName="storeForm">
<table>
<tr>
<td><form:label path="name">Name store</form:label></td>
<td><form:input path="name" /></td>
<td><form:errors path="name" /></td>
</tr>
<tr>
<td><form:label path="address">Address store</form:label></td>
<td><form:input path="address" /></td>
<td><form:errors path="address" /></td>
</tr>
</form:form>