我可以将 hibernate 实体注释与 bean 验证一起使用吗
要在 JSF 2 中对表单字段使用 Bean 验证,您可以在 Bean 中使用注释,例如 @Length(max=5)
。
但是,由于这些约束已经在我的 Hibernate 实体对象中定义,例如:@Column(name = "FIELDX", length = 5),我想知道是否有办法将它们用于验证?
To use bean validation for form fields in JSF 2, you can use annotations in the bean like @Length(max=5)
.
However, since these constraints are already defined in my Hibernate entity object, for example: @Column(name = "FIELDX", length = 5)
, I was wondering if there's a way to use them for the validation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不能。而且您不应该这样做,因为:
No, you can't. And you shouldn't, because: