gpt4 book ai didi

grails - 在 grails 中禁用 native 生成的标识值功能

转载 作者:行者123 更新时间:2023-12-02 15:28:39 25 4
gpt4 key购买 nike

以下是我的域类详细信息。

class Age {
String agetype
static constraints = {
}

}

我正在使用 HeidiSQL。我想删除自动生成的 id 列。并将主键设置为“agetype”。我能做什么?

最佳答案

标识符可以在映射 block 内轻松自定义,如果默认 id不需要。

class Age {
String agetype

static mapping = {
id name: 'agetype',
column: 'AGE_TYPE', // if the column name is AGE_TYPE
generator: 'assigned' // Unique String should assigned for agetype
}

static constraints = {
agetype bindable: true //identifiers are not bindable by default
}
}

通过上述设置,您应该能够将 Age 创建为:
new Age(agetype: 'Teen').save(flush: true)

如果再次运行,上面将通过主键冲突。

引用 docs有关定制的更多详细信息 id column 按要求。

关于grails - 在 grails 中禁用 native 生成的标识值功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23622847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com