jackson « MVC Controller « Spring Q&A





1. How to enable Spring 3.0 MappingJacksonHttpMessageConverter with @ResponseBody AND pre-Spring-3.0 Controller SimpleUrlHandlerMapping together?    stackoverflow.com

As the title suggests, I'm trying and failing to get the following combination working in Spring 3.0:

  • pre-Spring-3.0 controllers mapped with SimpleUrlHandlerMapping, and,
  • a Spring-3.0 @Controller using MappingJacksonHttpMessageConverter and @ResponseBody to return JSON.
All ...

2. Jackson polymorphic deserialization mapped to spring controller method    forum.springsource.org

Jackson polymorphic deserialization mapped to spring controller method I've got jackson deserialization able to determine which type I'm passing to it, so in my controller method I now need to test ...