其他分享
首页 > 其他分享> > 使用restTemlate调用rest接口需要先配置否则会出现未加载异常

使用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();
    }
}

 

标签:web,restTemlate,RestTemplate,springframework,Bean,rest,org,import,加载
来源: https://www.cnblogs.com/yjwfcs/p/16107365.html