springboot 2 请求返回乱码解决

  • 问题
  • 解决方法

问题

    @RequestMapping(value = "encodeTest",method = RequestMethod.GET)
    public R encodeTest() {
        return  HenResult.ok("这是中文"+"abcd");
    }

springboot 2 请求返回乱码解决_第1张图片

解决方法

yml文件中加入以下配置,指定编码格式。

server:
  servlet:
    encoding:
      force: true
      charset: UTF-8

springboot 2 请求返回乱码解决_第2张图片

你可能感兴趣的:(问题记录,springboot,多模块,乱码,java,spring,boot)