在 Hibernate 中映射 oracle 的 UserType 列
我有一个用户定义的数据类型,可以包含数字列表。我如何在 Hibernate 中映射它。
在使用 hibernate 的逆向工程功能时,我得到了与该字段对应的可序列化数据类型。
我希望有一些具体的课程。
我探索了 org.hibernate.usertype.UserType 接口,但不确定如何在我的情况下使用它。
I have a user defined datatype that can contain a list of numbers. How can I map it in Hibernate.
While using the reverse engineer feature of hibernate, I get a Serializable datatype corresponding to this field.
I desire to have some concrete Class for the same.
I explored about org.hibernate.usertype.UserType interface but not sure how to use it in my case.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,您可以创建多对多关系:
当然,您不需要覆盖
@JoinTable
语句中的所有名称。You can create a many to many relation for instance:
Of course, you don't need to override all the names in the
@JoinTable
statement.