FeignClient【问题】Cannot deserialize value of type``from Object value (token `JsonToken.START_OBJECT`)

简介: FeignClient【问题】Cannot deserialize value of type``from Object value (token `JsonToken.START_OBJECT`)

1. 问题描述

@FeignClient(name = "dataServiceQueryInterface", url = "${url}:${port}")
public interface DataServiceQueryInterface {
    @GetMapping("/dataReport/getSysAreaAllList")
    List<SysArea> getSysAreaAllList() throws Exception;
}

使用接口获取数据时报错:

Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception 
[Request processing failed; nested exception is feign.codec.DecodeException: 
Error while extracting response for type 
[java.util.List<com.xxx.datamatch.datacar.entity.SysArea>] and content type 
[application/json;charset=UTF-8]; nested exception is 
org.springframework.http.converter.HttpMessageNotReadableException: 
JSON parse error: Cannot deserialize value of type 
`java.util.ArrayList<com.xxx.datamatch.datacar.entity.SysArea>` 
from Object value (token `JsonToken.START_OBJECT`); 
nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: 
Cannot deserialize value of type 
`java.util.ArrayList<com.xxx.datamatch.datacar.entity.SysArea>` 
from Object value (token `JsonToken.START_OBJECT`)

2. 问题方法

试验 1️⃣ 添加依赖【无任何效果】

<dependency>
  <groupId>com.alibaba</groupId>
  <artifactId>fastjson</artifactId>
  <version>1.2.46</version>
</dependency>

试验 2️⃣ 修改返回类型【不报错 但是结果数据是字符串 未封装需要自行解析】

@FeignClient(name = "dataServiceQueryInterface", url = "${url}:${port}")
public interface DataServiceQueryInterface {
    @GetMapping("/dataReport/getSysAreaAllList")
    String getSysAreaAllList() throws Exception;
}

最终解决方案 3️⃣【将@GetMapping修改为@PostMapping】

@FeignClient(name = "dataServiceQueryInterface", url = "${url}:${port}")
public interface DataServiceQueryInterface {
    @PostMapping("/dataReport/getSysAreaAllList")
    List<SysArea> getSysAreaAllList() throws Exception;
}

原因没有进行深入探究,有知道原因的小伙伴可以分享一下~

目录
相关文章
|
1月前
|
Java 测试技术 数据库
hql投影查询之—— [Ljava.lang.Object; cannot be cast to cn.bdqn.guanMingSys.entity.Notice
hql投影查询之—— [Ljava.lang.Object; cannot be cast to cn.bdqn.guanMingSys.entity.Notice
11 0
|
5月前
libfreetype.so.6: cannot open shared object file: No such file or directory
libfreetype.so.6: cannot open shared object file: No such file or directory
156 0
|
机器学习/深度学习 Linux
解决ImportError libgmpxx.so.4 cannot open shared object file No such file or directory
解决ImportError libgmpxx.so.4 cannot open shared object file No such file or directory
177 0
解决ImportError libgmpxx.so.4 cannot open shared object file No such file or directory
|
2月前
|
Java
cannot open shared object file: No such file or directory
cannot open shared object file: No such file or directory
22 0
|
4月前
|
Java
cannot open shared object file: No such file or directory
cannot open shared object file: No such file or directory
35 0
|
5月前
|
NoSQL MongoDB
mongod: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No s
mongod: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No s
143 0
|
5月前
gdalinfo: error while loading shared libraries: libgdal.so.30: cannot open shared object file: No su
gdalinfo: error while loading shared libraries: libgdal.so.30: cannot open shared object file: No su
|
5月前
|
关系型数据库 MySQL
mysql: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such
mysql: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such
|
8月前
Cannot assign to read only propertyOhobiect“#<Object>
Cannot assign to read only propertyOhobiect“#<Object>