小码问答,有问必答!

2022-02-15 14:13

SpringBoot不能自动注入RestTemplate

少尉 2022-02-15 14:13 回答了这个问题

JavaEE

运行springboot项目,出现错误:No qualifying bean of type [org.springframework.web.client.RestTemplate] found

在启动类中加入下面的代码就可以解决:

@Bean
public RestTemplate restTemplate(){
    return new RestTemplate();
}


0条评论

我要评论