I want to be able to access properties from a JSON string within my Java action method. The string is available by simply saying myJsonString = object.getJson()
myJsonString = object.getJson()
Or with Jackson:
String json = "... ObjectMapper m = new ObjectMapper(); Set products = m.readValue(json, new TypeReference>() {});