1

我正在使用Netflix Feign 制作我的 java http 客户端,使用这样的客户端:

public interface PromocodeClient {


@Headers({
    "Content-Type:" + MediaType.APPLICATION_JSON_UTF8_VALUE, "userIdentifier: {userIdentifier}"
})
@RequestLine("POST /rootpath/{code}/unblock")
Boolean unblock(
    @Param("userIdentifier") String userIdentifier,
    @Param("code") String promocode,
    BookingDTO booking);


static PromocodeClient connect() {
    return Feign.builder()
        .encoder(new GsonEncoder())
        .decoder(new GsonDecoder())
        .target(PromocodeClient.class, Urls.SERVICE_URL.toString());
         //Url.SERVICE_URL = http://localhost:8082/1.0
}

我收到一个奇怪的错误

{
  "timestamp" : "2016-08-02T07:47:16.208+0000",
  "status" : 415,
  "error" : "Unsupported Media Type",
  "exception" : "org.springframework.web.HttpMediaTypeNotSupportedException",
  "message" : "Content type 'pplication/json;charset=UTF-8' not supported",
  "path" : "/1.0/rootpath/COD_PROMOCODE/unblock"
} 
}

消息说“内容类型'应用程序/json;charset = UTF-8'不支持”但我使用的MediaType.APPLICATION_JSON_UTF8_VALUE是Spring,其值为

应用程序/json;charset=UTF-8

有谁知道发生了什么?

4

1 回答 1

3

冒号后可能需要一个空格:

"Content-Type: " + MediaType.APPLICATION_JSON_UTF8_VALUE
              ^ here

HTTP 标准不需要它:

字段值前面可以有任意数量的 [linear whitespace],但最好使用单个 [space]。

但您正在与之交谈的服务器可能实际上并不完全符合 HTTP 标准,因此类似:

header.substring(header.indexOf(':') + 2)

查找标头的值,该标头仅处理“首选”情况。

于 2016-08-02T08:12:38.223 回答