0

我正在使用 Grails 1.3.7 和 MySQL 5.1。5.5. 我有一个定义字符串属性的类,如下所示:

class Topic {
    String name;
    User owner;
    // other fields

    static constraints = {
        name(blank: false, maxSize: 1024, unique: ['owner'])
    }
}

这适用于内存数据库,但是当我部署 WAR 文件时,出现此错误:

12/06/07 17:09:48 ERROR hbm2ddl.SchemaUpdate: Unsuccessful: create table topic (id bigint not null auto_increment, version bigint not null, date_created datetime not null, description longtext, name longtext not null, owner_id bigint not null, primary key (id), unique (owner_id, name))
12/06/07 17:09:48 ERROR hbm2ddl.SchemaUpdate: BLOB/TEXT column 'name' used in key specification without a key length

如果我将maxSize规格更改为 255,一切正常。

我对文档的阅读是,默认情况下 MySQL 无法计算密钥长度以强制执行唯一性约束;为什么 grails 不为此目的传递 maxSize 值?

更新:2012 年 6 月 8 日这是我正在使用的休眠规范:

hibernate {
    cache.use_second_level_cache=true
    cache.use_query_cache=true
    cache.provider_class='net.sf.ehcache.hibernate.EhCacheProvider'
}

我将 com.mysql.jdbc.Drivermysql-connector-java-5.1.7-bin.jar与 MySQL 5.5 库一起使用。

4

1 回答 1

1

您使用的是哪个版本的 mysql,varchar 列的最大长度可以是 255(在 mysql 5.0.3 之前) - 请参阅http://dev.mysql.com/doc/refman/5.0/en/char.html

您可以尝试将列类型更改为文本

于 2012-06-08T05:30:32.320 回答