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.
我做了丰富的应用程序。我正在使用休眠验证器作为我的验证器。Emm 我有问题,关于如何从休眠验证器获取错误消息并将其绑定到我的挥杆。谢谢你的评论
为什么您不能得到错误消息并将其作为标签显示在 Swing UI 上?
ConstraintViolation.getMessage()
使用注释的消息字段将消息作为属性文件中的键提供。
假设属性文件包含以下
test.username.empty = 提供的用户名不正确。
然后你可以提供
@NotNull(message="test.username.empty") private String username
现在您可以收集从属性文件中查找的所有消息并显示它们