I'm creating a REST server with Jersey/Java and I found a strange behavior.
I have a method on the server that returns an array of objects as Json
@GET
@Path("/files")
@Produces(MediaType.APPLICATION_JSON)
public Object getFiles() throws Exception{
DatabaseManager db = new DatabaseManager();
FileInfo[] result = db.getFiles();
return result;
}
The code is executed correctly and data is returned to the client (a jQuery ajax call). The problem is that the format of the returned data changes if the "result" array has one element or more than one.
Response with one element:
{"fileInfo":{"fileName":"weather.arff","id":"10"}}
Response with two elements:
{"fileInfo":[{"fileName":"weather.arff","id":"10"},{"fileName":"supermarket.arff","id":"11"}]}
As you can see, in the first scenario the value of the "fileInfo" property of the returned object is an object, and in the second case the value is an array. What am I doing wrong? Shouldn't the first case return something like this:
{"fileInfo":[{"fileName":"weather.arff","id":"10"}]}
i.e. an array with a single object inside?
I know that I can detect this on the client side, but it seems like a very ugly hack.
Thanks for your time.
I ended up using Jackson, also described in the official Jersey documentation (http://jersey.java.net/nonav/documentation/latest/user-guide.html#json.pojo.approach.section).
I had tried that before but it wasn't working because I didn't have the jackson jar in the buildpath of my project (Based on the documentation I thought it was built into jersey's core library).
I just added the jackson-all.jar file (http://wiki.fasterxml.com/JacksonDownload) and enabled the POJO support in the configuration
And voilá!
I've struggled quite a bit and found this simple solution
In your pom.xml:
In your web.xml:
You could also try Genson library http://code.google.com/p/genson/. It integrates well with jersey, just drop the jar in your classpath and everything will work. It doesnt require you to write additional code, it should work like what you have now but without any weird result.
Also have a look at the following answer, that solved it for me:
How can I customize serialization of a list of JAXB objects to JSON?
You could use Jettison (coming with Jersey) and prepare the structure you would like to have yourself using
JSONObject
andJSONArray
as return values. They are in the packageorg.codehaus.jettison.json
ofjettison-1.3.2.jar
which is a transitive dependency ofjerysey-json
I'm using cxf, here is my applicationContext.xml to force array in JSON: