Springboot项目请求乱码问题

  • Post author:
  • Post category:其他




问题描述

请求乱码,但是看F12当中的请求又并没有乱码,这就很莫名其妙了。

在这里插入图片描述



解决过程

刚开始一直以为是浏览器问题,因为使用postman也是返回的中文。并没有乱码问题,于是搜了很多关于谷歌浏览器乱码问题的。

谷歌浏览器本身设置当中好像是没有设置编码的地方,于是下载了一个插件,专门用于修改浏览器的编码。但是没有什么卵用。

后来又专门拿别的浏览器来进行访问,发现也是乱码,这样一来就排除了浏览器问题。


最终添加如下配置修改响应编码,成功解决!:

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.StringHttpMessageConverter;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

import java.nio.charset.Charset;
import java.util.List;

@Configuration
@EnableWebMvc
public class ResposeConfig implements WebMvcConfigurer {

    @Bean
    public HttpMessageConverter<String> responseBody() {
        return new StringHttpMessageConverter(Charset.forName("UTF-8"));
    }

    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        converters.add(responseBody());
    }
}



版权声明:本文为weixin_43888891原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。