Question

I am facing a problem to get the required result from this closure

def authors{
    results = Message.createCriteria().list {
        projections {
            author{
                groupProperty('id', 'authorId') // 2nd param is alias
                property('username', 'username')
            }
        }

        and{
            ...
            ...
        }
    }

    [authors:results]
}

I want to show this list on my gsp page and wants to access the values using aliases (while above criteria is returning a list of arrays)

Was it helpful?

Solution

Use resultTransformer(CriteriaSpecification.ALIAS_TO_ENTITY_MAP).

import org.hibernate.criterion.CriteriaSpecification
Message.createCriteria().list {
    resultTransformer(CriteriaSpecification.ALIAS_TO_ENTITY_MAP)
    projections {
        author{
            groupProperty('id', 'authorId')
            property('username', 'username')
        }
    }
}

All projections must have aliases. Otherwise the resulting map will contain nulls.

OTHER TIPS

You can try this

def authors{
    results = Message.createCriteria().list {
        projections {
            author{
                groupProperty('id') 
                property('username')
            }
        }

        and{
            ...
            ...
        }
    }
    List authors = results.collect{record -> [authorId : record[0], username:record[1]}
    [authors:authors]   }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top