前端之家收集整理的这篇文章主要介绍了
java – 如何使用UUID与Hibernate作为字段?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用没有@Id注释的
生成的UUID,因为我的主键是别的东西.应用程序不会
生成UUID,你有想法吗?
这是我的声明:
@Column(name = "APP_UUID",unique = true)
@GeneratedValue(generator="system-uuid")
@GenericGenerator(name="system-uuid",strategy = "uuid")
private String uuid;
我正在使用Hibernate 4.3.0与Oracle10g.
尝试这可能有帮助
@Id
@GeneratedValue(generator = "hibernate-uuid")
@GenericGenerator(name = "uuid",strategy = "uuid2")
@Column(name = "uuid",unique = true)
private String uuid;
读这个link读取hibernate文件是可能的
原文链接:https://www.f2er.com/java/123536.html