JsonView « MVC « Spring Q&A





1. Using @JsonView with Spring MVC    stackoverflow.com

I am using the following bean definition to make my spring app talking in JSON

<bean id="jacksonMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" />
Is it possible with this message converter bean to use the @JsonView annotation?

2. Jackson's @JsonView, @JsonFilter and Spring    stackoverflow.com

Can one use the Jackson @JsonView and @JsonFilter annotations to modify the JSON returned by a Spring MVC controller, whilst using MappingJacksonHttpMessageConverterand Spring's @ResponseBody and @RequestBody annotations?

public class Product
{
   ...

3. Spring MVC 2.5 / JsonView    forum.springsource.org

Spring MVC 2.5 / JsonView Hello all, i need to write a SpringMVC app that uses extjs library.... I need to transfer data using JSON between front end and back end.... ...