使用 Spring Cloud Open Feign 获取 JSON 中的对象列表
Get a list of objects in JSON with Spring Cloud Open Feign
我有一个应用程序,当我调用其中一项服务时,它 return 如下 JSON:
{
"suppliers": [
{
"name": "Joaquim",
"email": "joaquim@email.com",
},
{
"name": "Manoel",
"email": "manoel@email.com",
}
]
}
要访问此数据,我使用具有以下方法的 Feign 客户端:
@FeignClient(name = "suppliersClient", url = "www.url-example.com.br")
// ...
List<SuppliersDTO> searchSuppliers(@RequestParam("city") String city);
根据城市的不同,它 return 是供应商列表。此代码是一个简单的示例,用于向您解释我正在尝试做的事情。
我的 DTO 供应商 class 除了 getters
和 setters
之外还有 name
和 email
字段。
public class SuppliersDTO {
String name;
String email;
// GETTERS AND SETTERS
使用这样的代码,当使用 Feign 客户端时,我得到一个 500 Internal Server Error 的信息:
"Error while extracting response for type [java.util.List<com.domain.store.dto.SuppliersDTO>] 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.domain.store.dto.SuppliersDTO>` 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.domain.store.dto.SuppliersDTO>` from Object value (token `JsonToken.START_OBJECT`)\n at [Source: (PushbackInputStream); line: 1, column: 1]"
根据我的研究和阅读,错误的发生是因为服务的 JSON return 是一个供应商对象,其中有一个列表。这就是杰克逊无法绑定到我的 List<SuppliersDTO>
的原因。为了解决这个问题,我创建了另一个 class:
public class SuppliersListDTO {
List<SuppliersDTO> suppliers;
// GETTERS E SETTERS
现在我的 Feign returns SuppliersListDTO
而不是 List<SuppliersDTO>
:
@FeignClient(name = "SuppliersClient", url = "www.url-example.com.br")
// ...
SuppliersListDTO searchSuppliers(@RequestParam("city") String city);
这样就可以了,绑定完成,我 return 给用户一个 SuppliersListDTO。但这似乎不是处理从 JSON 收到的列表的最正确方法。我真的必须为此创建两个 DTO class,其中一个只有一个变量 (List<SuppliersDTO> suppliers
) 及其 getter
和 setter
吗?根据您的经验,您会推荐另一种方法吗?
响应格式无关紧要,可以是 Collection 也可以不是...
请遵循此代码:
import lombok.Data;
import java.util.List;
@Data
public class DictionaryDto {
private final String domainDescription;
private final List<DictionaryKeyDto> keys;
}
import lombok.Data;
@Data
public class DictionaryKeyDto {
private final String keyCode;
private final String keyValue;
private final String keyExtendedValue;
}
import com.james.domain.client.DictionaryDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestParam;
import javax.validation.constraints.NotEmpty;
@FeignClient(name = "${be.client.name}", url = "${be.client.url}")
public interface BeClient {
@GetMapping("dictionary/{domainCode}")
public DictionaryDto getDictionaryByDomainCode(@PathVariable @NotEmpty String domainCode);
}
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
@SpringBootApplication
@EnableFeignClients
public class StandAloneApplication {
public static void main(String[] args) {
SpringApplication.run(StandAloneApplication.class, args);
}
}
我使用了这个 mvn 依赖项:
org.springframework.cloud
spring-cloud-starter-openfeign
我有一个应用程序,当我调用其中一项服务时,它 return 如下 JSON:
{
"suppliers": [
{
"name": "Joaquim",
"email": "joaquim@email.com",
},
{
"name": "Manoel",
"email": "manoel@email.com",
}
]
}
要访问此数据,我使用具有以下方法的 Feign 客户端:
@FeignClient(name = "suppliersClient", url = "www.url-example.com.br")
// ...
List<SuppliersDTO> searchSuppliers(@RequestParam("city") String city);
根据城市的不同,它 return 是供应商列表。此代码是一个简单的示例,用于向您解释我正在尝试做的事情。
我的 DTO 供应商 class 除了 getters
和 setters
之外还有 name
和 email
字段。
public class SuppliersDTO {
String name;
String email;
// GETTERS AND SETTERS
使用这样的代码,当使用 Feign 客户端时,我得到一个 500 Internal Server Error 的信息:
"Error while extracting response for type [java.util.List<com.domain.store.dto.SuppliersDTO>] 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.domain.store.dto.SuppliersDTO>` 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.domain.store.dto.SuppliersDTO>` from Object value (token `JsonToken.START_OBJECT`)\n at [Source: (PushbackInputStream); line: 1, column: 1]"
根据我的研究和阅读,错误的发生是因为服务的 JSON return 是一个供应商对象,其中有一个列表。这就是杰克逊无法绑定到我的 List<SuppliersDTO>
的原因。为了解决这个问题,我创建了另一个 class:
public class SuppliersListDTO {
List<SuppliersDTO> suppliers;
// GETTERS E SETTERS
现在我的 Feign returns SuppliersListDTO
而不是 List<SuppliersDTO>
:
@FeignClient(name = "SuppliersClient", url = "www.url-example.com.br")
// ...
SuppliersListDTO searchSuppliers(@RequestParam("city") String city);
这样就可以了,绑定完成,我 return 给用户一个 SuppliersListDTO。但这似乎不是处理从 JSON 收到的列表的最正确方法。我真的必须为此创建两个 DTO class,其中一个只有一个变量 (List<SuppliersDTO> suppliers
) 及其 getter
和 setter
吗?根据您的经验,您会推荐另一种方法吗?
响应格式无关紧要,可以是 Collection 也可以不是... 请遵循此代码:
import lombok.Data;
import java.util.List;
@Data
public class DictionaryDto {
private final String domainDescription;
private final List<DictionaryKeyDto> keys;
}
import lombok.Data;
@Data
public class DictionaryKeyDto {
private final String keyCode;
private final String keyValue;
private final String keyExtendedValue;
}
import com.james.domain.client.DictionaryDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestParam;
import javax.validation.constraints.NotEmpty;
@FeignClient(name = "${be.client.name}", url = "${be.client.url}")
public interface BeClient {
@GetMapping("dictionary/{domainCode}")
public DictionaryDto getDictionaryByDomainCode(@PathVariable @NotEmpty String domainCode);
}
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
@SpringBootApplication
@EnableFeignClients
public class StandAloneApplication {
public static void main(String[] args) {
SpringApplication.run(StandAloneApplication.class, args);
}
}
我使用了这个 mvn 依赖项:
org.springframework.cloud spring-cloud-starter-openfeign