この閉鎖から必要な結果を得るのに問題に直面しています
def authors{
results = Message.createCriteria().list {
projections {
author{
groupProperty('id', 'authorId') // 2nd param is alias
property('username', 'username')
}
}
and{
...
...
}
}
[authors:results]
}
このリストをgspページに表示し、エイリアスを使用して値にアクセスしたい(上記の基準が配列のリストを返している間)