Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.