Hello I am sorry if already asked but couldnt find.
Here is my problem, I do not know how many fields i will send to my webservice as they will be dynamic. As such i wanted to send a json array to my jersey jaxb ressource. as the objects in my json array will be a single dimensional array of strings i should be able to do the below:
@POST
@Path("/test")
@Produces(MediaType.APPLICATION_JSON)
public Response InputList(@QueryParam("list") final List<String> inputList)
Here is my json array { "list": [ "hello", "world" ] }
This does not seems to work....