I have an array of arrays in post like this to a Jersey controller:
[["Showing",false],["Running",false],["Working",false],...]
the post is via jquery:
$.ajax({
type: 'POST',
contentType: 'application/x-www-form-urlencoded; charset=UTF-8',
url: '/myapp/',
data: {'data[][]' : data},
success:{...}}
But I am not able to pass this data to the controller. I have used:
@Post
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public void myController(MultivaluedMap<String, Object> formParams) {...}
but I can see this error:
SEVERE: A message body reader for Java class javax.ws.rs.core.MultivaluedMap, and Java type javax.ws.rs.core.MultivaluedMap<java.lang.String, java.lang.Object>, and MIME media type application/x-www-form-urlencoded; charset=UTF-8 was not found.
The registered message body readers compatible with the MIME media type are:
application/x-www-form-urlencoded; charset=UTF-8 ->
com.sun.jersey.core.impl.provider.entity.FormProvider
com.sun.jersey.core.impl.provider.entity.FormMultivaluedMapProvider
*/* ->
com.sun.jersey.core.impl.provider.entity.FormProvider**strong text**
any idea how to pass correctly the data?