服务之间的联系要用RestTemplate,那在获取restTemplate对象的时候除了可以用new来创建,也可以用@Bean这个注解来创建
格式是
@Beanpublic RestTemplate restTemplate(){ return new RestTemplate();}作用是一样的
SpringCloud学习点滴——bean注解
原文:https://www.cnblogs.com/dudu-dubby/p/10094852.html