使用RestTemplate报错及解决办法

问题描述: A component required a bean of type ‘org.springframework.web.client.RestTemplate’ that could not be found.

问题截图:

出现原因:
在 Spring Boot 1.3版本中,会默认提供一个RestTemplate的实例Bean,而在 Spring Boot 1.4以及以后的版本中,这个默认的bean不再提供了,我们需要在Application启动时,手动创建一个RestTemplate的配置。

解决方法:

新建一个配置类RestTemplateConfig

1
2
3
4
5
6
7
@Configuration
public class RestTemplateConfig {
   @Bean
   public RestTemplate getRestTemplate() {
       return new RestTemplate();
  }
}