当前位置:首页 » 《资源分享》 » 正文

解决:No qualifying bean of type ‘org.springframework.web.client.RestTemplate‘ available:

9 人参与  2024年09月21日 16:01  分类 : 《资源分享》  评论

点击全文阅读


SpringBoot 项目启动时报错:

 No qualifying bean of type 'org.springframework.web.client.RestTemplate' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
 

 产生原因:由于springboot版本问题,当前项目的版本需要交给spring容器管理。

问题解决

在项目启动类中加入以下代码:

    @Bean
    public RestTemplate restTemplate(RestTemplateBuilder builder) {
        return builder.build();
    }
    


点击全文阅读


本文链接:http://zhangshiyu.com/post/162795.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1