我有一个这样的域类:
class Domain {
String a
int b
String c
...
def afterInsert(){
def anotherDomain = new AnotherDomain()
anotherDomain.x=1
anotherDomain.y=2
if(anotherDomain.save()){
println("OK")
}else{
println("ERROR")
}
}
}
它打印“OK”,我什至可以打印 anotherDomain 对象,一切似乎都正常,没有错误,什么都没有,但是 anotherDomain 对象不会保留在数据库中