我对此代码有错误:
abstract class Foo implements Serializable {
int weighting
static mapping = {
discriminator column: "type"
id composite: ['weighting', 'type']
}
}
class Bar extends Foo {
discriminator value: "bar"
}
class Hello extends Foo {
discriminator value: "hello"
}
Gorm没有认识到'类型'当我明确地添加'键入'时,我在实体的映射中有一个"重复列"错误。 如果我将insertable和updateable设置为false则没有效果。