mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
24 lines
643 B
Java
24 lines
643 B
Java
package im.zhaojun.common.config;
|
|
|
|
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 zhaojun
|
|
*/
|
|
@Configuration
|
|
public class ZFileConfiguration {
|
|
|
|
@Bean
|
|
public RestTemplate restTemplate(){
|
|
RestTemplate restTemplate = new RestTemplate();
|
|
restTemplate.getMessageConverters().set(1, new StringHttpMessageConverter(StandardCharsets.UTF_8));
|
|
return restTemplate;
|
|
}
|
|
|
|
}
|