Tagged Questions
6
votes
2answers
5k views
How to return specific date format as JSON in Grails?
In Grails, you can use the JSON converters to do this in the controller:
render Book.list() as JSON
The render result is
[
{"id":1,
"class":"Book",
"author":"Stephen King",
...
0
votes
1answer
160 views
Custom string formatting in Grails JSON marshaller
I am looking for a way to do some string formatting through Grails JSON conversion, similar to custom formatting dates, which I found in this post.
Something like this:
import ...
0
votes
2answers
167 views
Newb to groovyConsole and struggling with importing Grails converters
I'll still just a pup when it comes to using Groovy's and Grails' tools. I want to use groovyConsole to test some ideas. The code I want to try involves using Grails converters, json to be exact. I ...