我正在使用带有杰克逊的 netflix-feign 来创建 Mailgun API 的包装器。问题是 API 要求 POST 请求与"Content-Type: application/x-www-form-urlencoded"
这是一个示例代码:
@RequestLine("POST /messages")
@Headers("Content-Type: application/x-www-form-urlencoded")
ResponseMessage sendMessage(Message message);
该Message
对象包含必要的属性,并且它们具有 JSON 注释:
@JsonProperty(value = "from")
private String from;
问题是发送的对象是一个 JSON 对象:
{
"from" : "test@test.mailgun.org",
"to" : "atestaccount@gmail.com",
"subject" : "A test email",
"text" : "Hello this is the text of a test email.",
"html" : "<html><body><h1>Hello this is the html of a test email.</h1></body></html>"
}
但是,这不是有效的x-www-form-urlencoded
内容类型。
有没有办法自动将对象序列化为正确的内容类型?
我认为我可以使用@Body
注释,但为了使用它,我必须将不同的属性传递给sendMessage
方法。