java – 在桌面应用程序中使用RestTemplate消费休息服务时出现问题

前端之家收集整理的这篇文章主要介绍了java – 在桌面应用程序中使用RestTemplate消费休息服务时出现问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在桌面应用程序中使用RestTemplate消费休息服务时出现问题,而在Web应用程序中使用时不会出现问题.

这是调试日志

15:30:40.448 [main] DEBUG o.s.web.client.RestTemplate - Reading [java.util.List] as "application/json" using [org.springframework.http.converter.json.MappingJacksonHttpMessageConverter@98adae2]
15:30:40.452 [main] DEBUG httpclient.wire.content - << "[{"name":"Indonesia","id":1},{"name":"AlaySia","id":2},{"name":"Autraliya","id":3}]"

Exception in thread “main” java.lang.ClassCastException: java.util.LinkedHashMap cannot be cast to com.mgm.domain.Country

这是我使用的代码.

 String url = "http://localhost:8080/mgm/country";
    List

当我将它放在网络应用程序中时,上面的代码不会出错.我使用Spring Rest MVC提供JSON并将其与RestTemplate一起使用.

当Jackson将java.util.LinkedHashMap转换为Country时,我认为存在问题.看起来countries.get(0)实际上有LinkedHashMap类型而不是Country,当我调用Country方法之一时会出现问题,如.getName()

最佳答案
尝试使用数组:

String url = "http://localhost:8080/mgm/country";
List
原文链接:https://www.f2er.com/spring/432026.html

猜你在找的Spring相关文章