RestTemplate 中文乱码解决
Posted djangoblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RestTemplate 中文乱码解决相关的知识,希望对你有一定的参考价值。
@Bean public RestTemplate restTemplate() { RestTemplate restTemplate = new RestTemplate(); restTemplate.getMessageConverters().set(1, new StringHttpMessageConverter(StandardCharsets.UTF_8)); return restTemplate; }
以上是关于RestTemplate 中文乱码解决的主要内容,如果未能解决你的问题,请参考以下文章
如何解决SpringBoot中RestTemplate的中文乱码问题?
RestTemplate发起http请求中文乱码问题解决方案