美文网首页
spring cloud feign调用报解码错误

spring cloud feign调用报解码错误

作者: 天生小包 | 来源:发表于2019-10-11 15:31 被阅读0次
1、异常: feign.codec.DecodeException
原因:服务端配置对请求压缩,客户端未配置
server:
  port: 8099
  compression:
    enabled: true
    min-response-size: 2048
    mime-types:             # 配置对什么类型的文件进行压缩
      - application/json
      - application/xml
      - text/html
      - text/xml
      - text/plain
解决:在客户端启用压缩
feign:
  compression:
    response:
       enabled: true

相关文章

网友评论

      本文标题:spring cloud feign调用报解码错误

      本文链接:https://www.haomeiwen.com/subject/fqztmctx.html