• SpringBoot中文乱码解决方案


    转载:https://blog.csdn.net/wangshuang1631/article/details/70753801

    方法一,修改application.properties文件

    增加如下配置:

    spring.http.encoding.force=true
    spring.http.encoding.charset=UTF-8
    spring.http.encoding.enabled=true
    server.tomcat.uri-encoding=UTF-8

    此时拦截器中返回的中文已经不乱码了,但是controller中返回的数据依旧乱码。

    方法二,修改controller的@RequestMapping

    修改如下:

    produces="text/plain;charset=UTF-8"

    这种方法的弊端是限定了数据类型,继续查找资料,在stackoverflow上发现解决办法,是在配置类中增加如下代码:

    @Configuration
    public class CustomMVCConfiguration extends WebMvcConfigurerAdapter {
    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
    //添加converter
    }
    @Bean
    public HttpMessageConverter<String> responseBodyConverter() {

    StringHttpMessageConverter converter = new StringHttpMessageConverter( Charset.forName("UTF-8"));
     } 






  • 相关阅读:
    时间日期date/cal
    chown命令
    su命令
    which命令和bin目录
    python基础之文件操作
    python之模块之shutil模块
    python基础之面向对象01
    python基础之面向对象02
    python基础之map/reduce/filter/sorted
    python基础之模块之序列化
  • 原文地址:https://www.cnblogs.com/brxHqs/p/9718387.html
Copyright © 2020-2023  润新知