RestTemplate远程调用

步骤 1:注册RestTemplate

在order-service的OrderApplication中注册RestTemplate

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@SpringBootApplication
public class SquareApplication {
public static void main(String[] args) {
SpringApplication.run(SquareApplication.class,args);
}

/**
* 创建RestTemplate 并注入Spring容器
* @return
*/
@Bean
public RestTemplate restTemplate(){
return new RestTemplate();
}
}