I’m converting a list of Foo objects to a JSON string. I need to parse the JSON string back into a list of Foos. However in the following example, parsing gives me a list of JSONObjects instead of Foos.
Example
List list = [new Foo("first"), new Foo("second")]
def jsonString = (list as JSON).toString()
List parsedList = JSON.parse(jsonString) as List
println parsedList[0].getClass() // org.codehaus.groovy.grails.web.json.JSONObject
How can I parse it into Foos instead?
Thanks in advance.
I had a look at the API docs for JSON and there doesn’t appear to be any way to parse to a JSON string to a specific type of object.
So you’ll just have to write the code yourself to convert each
JSONObjectto aFoo. Something like this should work:A more general solution would be to add a new static
parsemethod such as the following to theJSONmetaClass, that tries to parse the JSON string to a List of objects of a particular type:You can try out the code above in the groovy console. A few warnings