使用restTemlate调用rest接口需要先配置否则会出现未加载异常

package com.yjw.orderService.config;

import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;

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

 

posted @ 2022-04-06 16:55  疯靡  阅读(82)  评论(0)    收藏  举报