A component required a bean of type ‘org.springframework.web.client.RestTemplate‘ that could not be

Posted _瞳孔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A component required a bean of type ‘org.springframework.web.client.RestTemplate‘ that could not be相关的知识,希望对你有一定的参考价值。

在使用RestTemplate时,用@Autowired注入报错:

Could not autowire. No beans of 'RestTemplate' type found.

用@Resource注入虽然不报错了,但启动时报错:
A component required a bean of type 'org.springframework.web.client.RestTemplate' that could not be

经查阅资料发现,在 Spring Boot 1.3版本中,会默认提供一个RestTemplate的实例Bean,而在 Spring Boot 1.4以及以后的版本中,这个默认的bean不再提供了,因此我们需要手动创建一个RestTemplate的配置。

因此我们可以新建一个配置类RestTemplateConfig,代码如下:

@Configuration
public class RestTemplateConfig 
    @Bean
    RestTemplate restTemplate()
        return new RestTemplate();
    

然后就可以运行成功了。

如果有兴趣了解更多相关内容,欢迎来我的个人网站看看:瞳孔的个人空间

以上是关于A component required a bean of type ‘org.springframework.web.client.RestTemplate‘ that could not be的主要内容,如果未能解决你的问题,请参考以下文章

解决SpringBoot启动失败:A component required a bean of type ‘xxxxxxx‘ that could not be found.

A component required a bean of type ‘org.springframework.web.client.RestTemplate‘ that could not be

A component required a bean of type ‘com.xxx.xxx.service.xxxService‘ that could not be found的debug报错

A component required a bean of type ‘com.xxx.xxx.service.xxxService‘ that could not be found的debug报错

RawText "123" must be wrapped in an explicit <Text> component

Super expression must either be null or a function, not undefined