在Java中使用RestTemplate报错及解决办法
使用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 | @Configuration |
评论
你无需删除空行,直接评论以获取最佳展示效果