运行springboot项目,出现错误:No qualifying bean of type [org.springframework.web.client.RestTemplate] found
JavaEE
(0)
收藏
我要回答
在启动类中加入下面的代码就可以解决:
@Bean public RestTemplate restTemplate(){ return new RestTemplate(); }
在启动类中加入下面的代码就可以解决: