All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.anonymousmister.bootfastconfig.resttemplate.RestTemplateConfig Maven / Gradle / Ivy

package com.github.anonymousmister.bootfastconfig.resttemplate;

import org.springframework.context.annotation.Configuration;

@Configuration
public class RestTemplateConfig {


    /**
     * 让spring管理RestTemplate,参数相关配置
     *
     * @param builder
     * @return
     */
//    @Bean
//    public RestTemplate restTemplate(RestTemplateBuilder builder) {
//        RestTemplate restTemplate = builder.build();
//        restTemplate.setRequestFactory(new OkHttp3ClientHttpRequestFactory(OKHttpClientUtil.client));
//        restTemplate.getMessageConverters().set(1, new StringHttpMessageConverter(StandardCharsets.UTF_8));
//        return restTemplate;
//    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy