一、WebClient Uri传参
Uri传参有两种,一种是@RequestParam,一种是@PathVariable
@RequestParam通过key,value的形式传参。
@PathVariable通过占位符的形式传参。
1,@RequestParam传参
1,服务器端
接收消费者端提交过来的参数,生产Uri推送给消费者端。
2,客户端
以key,value的形式来传参
3,结果
2,@PathVariable占位符传参
1,服务器端
2,消费者端
build()里面加上传入的value值。
3,结果