JSON.createNamedConfig('short') {
it.registerObjectMarshaller Book, { Book book, JSON converter ->
[id: book.id, title: book.title]
}
}
JSON.createNamedConfig('full') {
it.registerObjectMarshaller Book, { Book book, JSON converter ->
[id: book.id, title: book.title, isbn: book.isbn]
}
}
…
} …
}