Slide 38
Slide 38 text
class BootStrap {
def init = { servletContext ->
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]
}
}
…
}
…
}