Class A
{
static constraints = {
bObj(nullable:true)
}
B bObj
static hasMany = [listB:B]
}
Class B
{
static constraints = {
aObj(nullable:true)
}
A aObj
}
我面临的问题是,当我检索 A 的实例(而 bObj.aObj 为空)并对其调用保存时,会自动将 A 的引用添加到 bObj.aObj 中,在调用 save() 之前它为空。
关于为什么会发生的任何想法。