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

Cookie-a 2024-10-16 15:33:06 阅读 61

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();

    }

    



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。