Hibernate使用Uuid生成

时间:2013-03-31 12:49:09

标签: java mysql spring hibernate jpa

这方面似乎有很多问题,但没有解决我的问题。

我尝试使用hibernate注释生成UUID。

我的注释低于......

@Id
@GeneratedValue(generator="system-uuid")
@GenericGenerator(name="system-uuid", strategy = "uuid")
@Column(name = "uuid", unique = true)
public UUID getUuid() {
    return uuid;
}

我在我的pom.xml中使用MySQL 5.2和Hibernate 3.5.6,如下所示......

<dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>3.5.6-Final</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-annotations</artifactId>
            <version>3.5.6-Final</version>
        </dependency>

启动我的申请后,我收到以下错误......

ERROR: org.hibernate.tool.hbm2ddl.SchemaExport - Unsuccessful: create table players (uuid tinyblob not null unique, espnid integer, espnUrl varchar(255), firstname varchar(255), lastname varchar(255), primary key (uuid))
ERROR: org.hibernate.tool.hbm2ddl.SchemaExport - BLOB/TEXT column 'uuid' used in key specification without a key length

正确的注释是什么?我使用的是不正确的休眠版本吗?我在MySQL上使用了什么错误的东西吗?

我的方言详情如下......

<beans:property name="hibernateProperties">
            <beans:props>
                <beans:prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect
                </beans:prop>
                <beans:prop key="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory
                </beans:prop>
                <beans:prop key="hibernate.show_sql">true</beans:prop>
                <beans:prop key="hibernate.hbm2ddl.auto">create</beans:prop>
            </beans:props>
        </beans:property>

错误意味着未指定长度,但是如果我将其输入@Column则没有任何更改。

我只使用旧版本的hibernate,因为hibernate-annotations只会持续到那时为止,如果现在这是一个死的回购,我将转移到更高版本。

1 个答案:

答案 0 :(得分:3)

我认为问题是getUuid()方法返回的类型。根据hibernate docs,它需要是String

  

uuid:

     

使用128位UUID算法生成类型的标识符   在网络中唯一的字符串(使用IP地址)。该   UUID编码为长度为32个十六进制数字的字符串。