我有一个2项的表单,这需要输入两个字段。我正在使用带注释的验证,并且正在获得错误消息,但它们不打印字段名称,只是"可能不是空白"而不是"一个可能不是空白",其中一个是字段名称。
任何想法?这是一个非常简单的例子:
@Controller
@SessionAttributes
public class HomeController
{
private static final Logger logger = LoggerFactory
.getLogger(HomeController.class);
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model)
{
logger.info("Welcome home! The client locale is {}.", locale);
model.addAttribute("homeformitem", new HomeFormItem());
return "home";
}
@RequestMapping(value = "/", method = RequestMethod.POST)
public String home(
@ModelAttribute("homeformitem") @Valid HomeFormItem item,
BindingResult result)
{
logger.info("Posting form");
logger.info(item.toString());
if (result.hasErrors())
{
return "home";
} else
{
logger.info("No Errors");
return "done";
}
}
}
这是表格。我得到了错误消息,但没有得到字段名。
<标题>表单验证! 标题>
<f:form method="post" modelAttribute="homeformitem">
<fieldset>
<legend>Fields</legend>
<table>
<tr><td colspan="3"><f:errors path="*"/></td></tr>
<tr>
<td><f:label path="one" for="one">One: </f:label></td>
<td><f:input path="one" /></td>
<td><f:errors path="one" cssClass="errorblock"/></td>
</tr>
<tr>
<td><f:label path="two" for="two">Two: </f:label></td>
<td><f:input path="two" /></td>
<td><f:errors path="two" cssClass="errorblock"/></td>
</tr>
<tr>
<td colspan="3"><input type="submit" value="Test" /></td>
</tr>
</table>
</fieldset>
</f:form>
您需要在/WEB-INF/messages
处创建一个validation.properties
文件,其中包含如下条目(例如):
NotEmpty.homeFormItem.one=The field {0} is empty
不要忘记添加一个spring bean来解析验证消息:
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="/WEB-INF/messages/validation" />
</bean>