I\'m trying to insert and/or update data into the database using the PUT method via JSON using jQuery 1.6, (Jackson 2.1.1 and Spring 3.
In the server side, in Spring 3, you need this:
Spring 4 uses mappingJackson2HttpMessageConverter.
Without AnnotationMethodHandlerAdapter bean declaration, you can also use @RequestBody, while by declaring it we can set mappingJackson2HttpMessageConverter to messageConverters. This is concluded by phenomena that I observed, if wrong please correct.