Feign简介在负载均衡篇的示例中使用RestTemplate实现REST API调用:
@GetMapping("/user/{id}")
public User findById(@PathVariable Long id) {
2019-01-21