我试图使用WebClient通过REST调用另一个服务,但我总是得到错误:
org.springframework.web.reactive.function.UnsupportedMediaTypeException:不支持内容类型'application / json'
所有分配都具有相同版本的依赖项,通过Postman调用资源可以正常工作。问题是,作为代理(客户端)的第一个应用程序试图调用第二个应用程序(服务)
我的服务器资源:
@RequestMapping(value = "/properties")
@PutMapping(consumes = APPLICATION_JSON_UTF8_VALUE)
@ResponseStatus(CREATED)
public void saveProperty(@Valid @RequestBody PropertyForm form) {
service.save(new PropertyImpl(form));
}
我的客户资源:
WebClient client = WebClient.create(serviceUrl);
Mono<Void> save(PropertyForm form) {
return client.put()
.uri("properties")
.contentType(MediaType.APPLICATION_JSON_UTF8)
.body(BodyInserters.fromObject(form))
.retrieve()
.bodyToMono(Void.class);
}
我的build.gradle文件:
dependencies {
compile "org.springframework.boot:spring-boot-starter-reactor-netty:2.0.4.RELEASE"
compile "org.springframework.boot:spring-boot-starter-web:2.0.4.RELEASE"
compile "org.springframework:spring-webflux:5.0.4.RELEASE"
compile "javax.xml.bind:jaxb-api:2.3.0"
}
我是否缺少一些依赖项,以启用JSON contentType?这个例子非常简单,但对我来说也很成问题。
表格型号:
class PropertyForm {
private String group;
private String key;
private String value;
// getters & setters
}
我终于找到了答案。问题实际上在发送表单中。表格的范围是包装,与制定者/吸气剂相同。在我将PropertyForm解压缩到API模块并将所有内容公之于众后,它表示可行。
因此,解决方案是用以下内容替换表单:
public class PropertyForm {
private String group;
private String key;
private String value;
// public getters & setters
}
谢谢你的帮助和时间。