抱歉,如果这个问题之前已经在某个地方讨论过。如果有请给我链接,我还没有找到满意的答案。
我一直在寻找一种方法来让我的 javax 验证提供的错误消息更具体。
我当前的 @Min 注释消息在 ValidationMessages.properties 文件中指定:
javax.validation.constraints.Min.message=The value of this variable must be less than {value}.
这会按预期打印出来
The value of this variable must be less than 1
我想要的是消息还包括验证失败的变量(和类)的名称以及失败的变量的值。所以更像。
The value of class.variable was 0 but not must be less than 1
任何帮助将不胜感激。
克利