当前位置: 代码迷 >> 综合 >> springboot response返回json对象乱码问题
  详细解决方案

springboot response返回json对象乱码问题

热度:15   发布时间:2023-11-03 07:56:19.0
1.tomcat编码server:tomcat:uri-encoding: UTF-8

2.http编码

spring:http:encoding:force: truecharset: utf-8enabled: true

3.response返回类型

response.setContentType("text/html;charset=utf-8");
  相关解决方案