1. 程式人生 > 其它 >springboot2.4中feign返回中文亂碼問題

springboot2.4中feign返回中文亂碼問題

技術標籤:spring bootsrping cloud

springboot2.4中feign返回中文亂碼問題:
配置檔案中新增
server:
 servlet:
    encoding:
      charset: utf-8
      enabled: true
      force: true

2.3版本中配置成:
spring:
  application:
    name: jeecg-system
  http:
    encoding:
      charset: UTF-8
      enabled: true
      force: true