Is there a way to build Spring Web calls that consume and produce application/json
formatted requests and responses respectively?
Maybe this i
This feature is now part of Spring since version 3.0. You can simply use the @ResponseBody annotation to specify that you want the return value from your request handler methods to be serialized to JSON and sent as the response body. See http://blog.springsource.com/2010/01/25/ajax-simplifications-in-spring-3-0/