jackson « jax « Java Enterprise Q&A





1. Issue Unmarshalling Map with JAX RS using JACKSON    stackoverflow.com

I have a method definition as such:

 @POST
 @Path("save")
 @Consumes("application/json")
 public void save(Map<ClientVO, Map<AssessmentVO, String>> data){
  System.out.println("THIS IS THE DATA: " + data);
 }
When I try to unmarshall on the ...