Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在关注这个问题的公认答案
它似乎有效,但是当验证失败时,我没有在我的页面中收到任何消息。我有带有适当路径的 form:errors 标记。但是很遗憾,您返回页面时没有显示任何错误。如何像常规 JSR-303 验证一样显示错误?
我想通了,在验证器中的失败场景中,您只需要使用以下内容。
constraintContext.buildConstraintViolationWithTemplate( "A value must be provided for this field." ).addNode( firstFieldName ).addConstraintViolation();