package com.highdatas.mdm.util;
|
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.http.converter.StringHttpMessageConverter;
|
import org.springframework.web.client.RestTemplate;
|
|
import java.nio.charset.StandardCharsets;
|
|
/**
|
* @author kimi
|
* @description
|
* @date 2020-03-02 16:58
|
*/
|
|
@Configuration
|
public class RestTemplateConfig {
|
|
@Bean
|
public RestTemplate utp8RestTemplate(){
|
RestTemplate restTemplate = new RestTemplate();
|
restTemplate.getMessageConverters().set(1,new StringHttpMessageConverter(StandardCharsets.UTF_8));
|
return restTemplate;
|
}
|
|
}
|