Grails 2.0 を初めて使用するため、custid が Customer にある評価でカスタム バリデータを作成する際の助けをいただければ幸いです。評価を完了することができるのは、既存のお客様のみです。ありがとう!
クラス顧客{
String custId
String firstName
String lastName
static constraints = {
custId()
firstName()
lastName()
}
}
クラス評価 {
String custId
String comment
static constraints = {
custId()
comment()
}
}