我通过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;
}
这项工作很好,但我必须以二进制形式存储它。不要问我为什么,但我必须。