私は自分たちと多対多の関係を持つ2つのドメインモデルを持っています
Candidate{
String name
static hasMany = [positions:Position]
}
Position{
static hasMany = [candidates:Candidate]
static belongsTo = [Candidate]
}
私の要件は、各ポジションの各候補の最終候補のステータスを取得することですが、grailsは中間テーブル自体を作成するため、それを実装する方法を考えます。
コメント、アイデア、例をいただければ幸いです。