WebClient的bodyToMono错误

时间:2018-08-29 13:48:21

标签: java spring spring-webflux project-reactor

我正在使用Spring 5 WebClient进行外部api调用,并希望将响应映射到这样的对象:

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public static class Response {
    private long length;
}

private Mono<Response> getResponse() {
    return webClient.get()
            .uri("someURI")
            .accept(MediaType.APPLICATION_JSON_UTF8)
            .retrieve()
            .bodyToMono(Response.class);
}

但是我得到一个错误:

org.springframework.web.reactive.function.UnsupportedMediaTypeException: Content type 'application/octet-stream' not supported

但是,如果我像这样提取对String的响应正文:

private Mono<String> getResponse() {
return webClient.get()
        .uri("someURI")
        .accept(MediaType.APPLICATION_JSON_UTF8)
        .retrieve()
        .bodyToMono(String.class); 
}

然后它可以正常工作。有什么想法可以解决这个问题吗?

编辑

响应正文:

{
  "blocks": [
  {
  "height": 545551,
  "size": 48289,
  "virtualSize": 48289,
  "hash": "000000000000000000541d265115ec188544420c4b0e5dff6f2171e17e4991c9",
  "time": 1535551238,
  "txlength": 80,
  "poolInfo": {}
  }
  ],
  "length": 1,
  "pagination": {
  "next": "2018-08-30",
  "prev": "2018-08-28",
  "currentTs": 1535587199,
  "current": "2018-08-29",
  "isToday": true,
  "more": true,
  "moreTs": 1535587200
  }
}

标题:

status: 200 OK

1 个答案:

答案 0 :(得分:2)

如果HTTP响应没有Content-Type标头,则客户端将假定application/octet-stream,这不是Spring WebFlux中Jackson编解码器支持的Content-Type。

因此,您看到的行为是预期的行为,并且应该修正Web API以添加响应标头。