Допустим, у меня есть класс с именем Store, в котором много сотрудников. Мой метод RESTful listXML выглядит так:
def listXML = {
render Store.list() as XML
}
И результат выглядит так:
<stores>
<store id="1">
<name>My Store</name>
<employees>
<employee id="1" />
</employees>
</store>
</store>
У меня вопрос: как мне включить все данные каждого класса Employee, чтобы мой XML выглядел примерно так?
<stores>
<store id="1">
<name>My Store</name>
<employees>
<employee id="1">
<name>John Smith</name>
<hireDate>2008-01-01</hireDate>
</employee>
</employees>
</store>
</store>