0
在我的Grails 3.2.6應用程序我有2類:抽象域類和tablePerHierarchy
abstract class Base {
static mapping = {
tablePerHierarchy false
}
}
和
class Child extends Base {
static mapping = {
collection 'child'
}
}
在保存兒童的情況下,傾入「基地」集合(與_class = Child
字段)而不是「孩子」。
如何使它正常工作?
UPDATE
我定義了Base
爲trait
下src/main/groovy
:
trait Base { }
和
class Child implements Base { }
則一切正常。
是由GORM蒙戈忽略,以及收集這種情況下, – injecteer