网站怎么做qq微信登陆界面设计,生活门户网站开发方案,做网站用python还是php,如何做网站维护 找关键词⭐ 作者简介#xff1a;码上言 ⭐ 代表教程#xff1a;Spring Boot vue-element 开发个人博客项目实战教程 ⭐专栏内容#xff1a;个人博客系统 ⭐我的文档网站#xff1a;http://xyhwh-nav.cn/ RestTemplate启动问题解决
问题#xff1a;在SpringCloud架构项目中配… ⭐ 作者简介码上言 ⭐ 代表教程Spring Boot vue-element 开发个人博客项目实战教程 ⭐专栏内容个人博客系统 ⭐我的文档网站http://xyhwh-nav.cn/ RestTemplate启动问题解决
问题在SpringCloud架构项目中配置了消费者服务后项目启动时报错。
报错信息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的配置。
解决方法
在启动类中添加该实例 BeanRestTemplate restTemplate(){return new RestTemplate();}