用于跨字段验证的 hibernate 验证器

发布于 2024-10-12 01:55:56 字数 185 浏览 2 评论 0原文

我有一个关于休眠验证器的问题:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花间憩 2024-10-19 01:55:56

使用自定义类级别验证器来执行此操作。

来自 Hibernate 验证器参考

  • < a href="http://docs.jboss.org/hibernate/stable/validator/reference/en-US/html/chapter-bean-constraints.html#d0e380" rel="nofollow">类级约束
  • 创建自定义约束

Use a custom class level validator to do this.

From the Hibernate Validator Reference:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文