如何使用hibernate JPA 2以二进制形式存储uuid

时间:2011-06-29 14:33:27

标签: java hibernate binary jpa-2.0 uuid

我通过hibernate持久性(JPA2)在二进制形式的数据库中有一个关于字符串uuid的问题。我现在正在使用这段代码:

private UUID id;

@Id
@Type(type="uuid-char")
@GeneratedValue(generator = "system-uuid")
@GenericGenerator(name = "system-uuid", strategy = "uuid")
@Column(length = 32, unique = true, nullable = false)
public final UUID getId() {
    return id;
}

这项工作很好,但我必须以二进制形式存储它。不要问我为什么,但我必须。

1 个答案:

答案 0 :(得分:6)

二进制UUID的类型是uuid-binary。你必须有Hibernate 3.6才能工作。

有关更多细节和陷阱,请参阅this question的答案。