Cómo acceder a un gran JSON que viene (desde un servicio RESTful de Spring) en una aplicación Spring MVC usando RestTemplate

Mi servicio web RESTful de Spring está devolviendo una forma JSON de-[{"clave1": "valor1", "clave2": "valor2", "clave3": "valor3"}, {"clave4": "valor4", "clave5": "valor5", "clave6": "valor6 "}] Ahora, cuando mi aplicación Spring MVC, intente acceder a ella, para mostrarla en un JSP, se produce una excepción diciendo:no se encontró HttpMessageConverter adecuado Por favor, ayúdame a equivocarme. Aquí está mi código.

Dentro de la clase @Controller de mi aplicación Spring MVC que llama al servicio RESTful

//**com.songs.controllers.FrontSongController.java**
</*
author Rohit Tiwari
*/>
@RequestMapping(value="/alls",method=RequestMethod.POST)
public String getAllSongs(ModelMap md)
{ 
    HttpHeaders headers = new HttpHeaders();
    headers.setContentType(MediaType.APPLICATION_JSON);
    headers.setAccept(Arrays.asList(MediaType.APPLICATION_JSON));
    HttpEntity<String> entity = new HttpEntity<String>(headers);
    String url="http://localhost:7001/SongAppWS/songappWS/allsongsWS";
    RestTemplate rt=new RestTemplate();

    //SongResource.class is for representation on incoming JSON see below for its code
    //This is the line no 48 that you will see in below browser logs

    ResponseEntity<SongResource> listofallsongs=rt.exchange(url,HttpMethod.GET,entity,  SongResource.class);
md.addAttribute("listname", "Songs available in the repository:");
System.out.println("Response Entity object= "+listofallsongs);
    System.out.println("Response Entity body= "+listofallsongs.getBody().toString());
return "Sucess";    
}

Dentro de config-servlet.xml de mi aplicación Spring MVC que llama al servicio RESTful

<context:component-scan base-package="com.songs.controllers" />
<mvc:annotation-driven />
<context:annotation-config/> 
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"></bean>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"></bean>
<bean  class="org.springframework.web.client.RestTemplate">
    <property name="messageConverters">
        <list>
            <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"/>
        </list>
    </property>
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>

Dentro de SongResource.java de mi aplicación Spring MVC, que estoy tratando de usar para convertir el JSON que viene a mi objeto SongResource.class, que mi aplicación Spring MVC puede usar en un jsp

//**com.songs.service.resource.SongResource.java**

public class SongResource 
{
    private String name;
    private String film;
    private String singer;
    public SongResource(String name,String film,String singer)
    {
    this.name=name;
    this.film=film;
    this.singer=singer; 
    }
    //setter & getters of all above
}

Al llamar al servicio Spring REST desde mi aplicación Spring MVC, el navegador dice lo siguiente:

Error 500--Internal Server Error
org.springframework.web.client.RestClientException: Could not extract response: no suitable     HttpMessageConverter found for response type [com.songs.service.resource.SongResource] and content type  [application/json]
at   org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java  :77)
    at org.springframework.web.client.RestTemplate$ResponseEntityResponseExtractor.extractData(RestTemplate.java:619)
at org.springframework.web.client.RestTemplate$ResponseEntityResponseExtractor.extractData(RestTemplate.java:1)
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:446)
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:401)
at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:377)
at com.songs.controllers.FrontSongController.getAllSongs(FrontSongController.java:48)

//y así

Respuestas a la pregunta(1)

Su respuesta a la pregunta