如何使用webflux Webclient创建带有参数的请求?
2022-09-02 23:33:02
在后端,我有带有POST方法的REST控制器:
@RequestMapping(value = "/save", method = RequestMethod.POST)
public Integer save(@RequestParam String name) {
//do save
return 0;
}
如何使用带有请求参数的WebClient创建请求?
WebClient.create(url).post()
.uri("/save")
//?
.exchange()
.block()
.bodyToMono(Integer.class)
.block();