我正在关注来自this question
的已接受答案它似乎有效,但在验证失败时,我的页面中没有收到任何消息。我有以下形式:带有适当路径的错误标记。但是唉,你回到页面没有显示错误。如何使用常规JSR-303验证显示错误?
答案 0 :(得分:1)
我想通了,在验证器的故障情况下,你只需要使用以下内容。
constraintContext.buildConstraintViolationWithTemplate( "A value must be provided for this field." ).addNode( firstFieldName ).addConstraintViolation();