0

我正在关注这个问题的公认答案

它似乎有效,但是当验证失败时,我没有在我的页面中收到任何消息。我有带有适当路径的 form:errors 标记。但是很遗憾,您返回页面时没有显示任何错误。如何像常规 JSR-303 验证一样显示错误?

4

1 回答 1

1

我想通了,在验证器中的失败场景中,您只需要使用以下内容。

constraintContext.buildConstraintViolationWithTemplate( "A value must be provided for this field." ).addNode( firstFieldName ).addConstraintViolation();

于 2013-01-31T16:57:08.820 回答