欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Feign踩坑记录:JSON parse error - 简书-feign报文过大异常解决

程序员文章站 2022-03-08 11:56:59
...
Feign踩坑记录:JSON parse error - 简书-feign报文过大异常解决

Caused by: com.fasterxml.jackson.core.JsonParseException: Illegal character ((CTRL-CHAR, code 31)): only regular white space (\r, \n, \t) is allowed between tokens


   <!--pom文件引入包-->
   <!--feign报文压缩-->
        <dependency>
            <groupId>io.github.openfeign</groupId>
            <artifactId>feign-httpclient</artifactId>
        </dependency>




<!--yml配置文件增加-->
feign:
  compression:
    request:
    # 不能改成true,会报错
      enabled: false
    response:
      enabled: false
相关标签: Feign