服务远程调用
你好
1、创建RestTemplate并注入spring容器(application: )
@Bean
public RestTemplate restTemplate(){
return new RestTemplate();
}
2、利用RestTemplate发起http请求,查询用户
@Autowired
private RestTemplate restTemplate;
//1、查询订单
Order order = orderMapper.selectByPrimaryKey(id);
//2、利用RestTemplate发起http请求,查询用户
//2.1 1url路径
String url = "http://localhost:9998/user/" + order.getUserId();
//2.2 发送http请求
User user = restTemplate.getForObject(url, User.class);
//3、封装user到order
order.setUser(user);
return order;