用于跨字段验证的 hibernate 验证器
我有一个关于休眠验证器的问题:
class A
{
private String a;
private String b;
}
字符串 a 和 b 可以为 null,但不能同时为 null。如何使用 Hibernate Validator 来验证这种情况?
谢谢,
I have a question about hibernate validator:
class A
{
private String a;
private String b;
}
String a and b can either be null but can't both be null. How can I use Hibernate Validator to validate this case?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用自定义类级别验证器来执行此操作。
来自 Hibernate 验证器参考:
Use a custom class level validator to do this.
From the Hibernate Validator Reference: