私は3つのドメインモデルを持っておりType1
、Type2
以下Details
の関係に従います。
class Type1 {
static hasMany = [detail: Detail]
}
class Type2 {
static hasMany = [detail: Detail]
}
class Detail {
Type1 type1
Type2 type2
static belongsTo = [Type1, Type2]
static constraints = {
type1(nullable:true)
type2(nullable:true)
}
}
問題は、変換されるたびType1.detail
にに転送されないことです(注:Type1とType2はの子にすぎません)。言い換えれば(コントローラー内で):Type2.detail
Type1
Type2
java.lang.Object
Type1 type1 = Type1.get(params.id)
List type1Details = Detail.findAllByType1(type1)
type1.detail.clear()
Type2 type2 = new Type2()
// transfer other properties of type1 to type2
type1Details.each { type2.addToDetail(it) }
if(type2.save(flush:true) {
type1.save(flush:true)
type1.delete(flush:true)
}
問題は、更新するだけtype1Details
で、どのように設定できtype1Details*.type1 = null
ますtype1Details*.type2 = type2
か?