Как получить доступ к огромному JSON (из весеннего RESTful Service) в весеннем MVC-приложении, используя RestTemplate

Мой Spring RESTful веб-сервис возвращает JSON-форму[{ "Ключ1": "значение1", "ключ2": "значение2", "ключ3": "значение3"}, { "Key4": "value4", "key5": "value5", "key6": "value6 «}] Теперь, когда мое весеннее приложение MVC, попробуйте получить к нему доступ, чтобы показать в JSP, тогда возникает исключение, говоря:Подходящий HttpMessageConverter не найден Пожалуйста, помогите мне, где я иду не так. Вот мой код

Внутри класса @Controller моего весеннего MVC-приложения, вызывающего сервис 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";    
}

Внутри config-servlet.xml моего весеннего MVC-приложения, вызывающего сервис 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>

Внутри SongResource.java моего весеннего приложения MVC, которое я пытаюсь использовать для преобразования предстоящего JSON в мой объект SongResource.class, которое мое весеннее приложение MVC может использовать в 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
}

При вызове службы Spring REST из моего весеннего приложения MVC браузер сообщает следующее:

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)

//и так далее

Ответы на вопрос(1)

Ваш ответ на вопрос