Spring RestTemplate 调用接口乱码的解决

时间:2024-03-29 06:55:50

背景:使用RestTemplate 调用接口返回结果乱码,但在浏览器中或者POSTMAN中调用时返回结果非乱码;

在解决问题过程中,设置请求各种编码等均未生效;在仔细观察http请求时发现

Spring RestTemplate 调用接口乱码的解决 

原来,数据是经过 GZIP 压缩过的。默认情况下, RestTemplate 使用的是 JDK 的 HTTP 调用器,并不支持 GZIP 解压;

解决方法:

使用 Apache HttpClient 作为 REST 客户端。Apache HttpClient 内置了对于 GZIP 的支持

@Configuration
public class RestConfiguration {

    @Bean
    public RestTemplate httpClientRestemplate() {
        RestTemplate restTemplate = new RestTemplate(
                new HttpComponentsClientHttpRequestFactory()); // 使用HttpClient,支持GZIP
        restTemplate.getMessageConverters().set(1,
                new StringHttpMessageConverter(StandardCharsets.UTF_8)); // 支持中文编码
        return restTemplate;
    }

}

业务代码引入后,正常调用接口即可

Spring RestTemplate 调用接口乱码的解决