Obecnie GORM dla MongoDB nie podaje poprawnych wartości w dirtyPropertyNames
pole. Musisz więc użyć innego pola wstrzykiwanego niższego poziomu w instancji domeny, tj. $changedProperties
.
Ale jest też problem z $changedProperties
że nawet jeśli powiążesz pole z tą samą wartością, $changedProperties
będzie miał dla niego wpis. Możesz więc dostosować go trochę bardziej w ten sposób, aby Twój kod działał:
def beforeUpdate() {
def instance = this
Map updatedFields = instance.$changedProperties
updatedFields.each { name, value ->
if (updatedFields[name] != instance[name]) {
println "Field value $name is updated"
if (name == "addresses") {
// I've not run this for a long time, just confirm the old and new addresses values and swap the assignment of below lines
List newAddresses = updatedFields[name]
List oldAddresses = instance[name]
newAddresses.each { address ->
if (!address.id) {
println "Got new address: $address.status"
} else {
Address oldAddress = oldAddresses.find { it.id == address.id }
if (!oldAddress) { // This is just an edge condition
println "Got new address: $address.status"
} else if (oldAddress.status != address.staus) {
println "$address status is updated to $address.status"
}
}
}
}
}
}
}