spring cloud feign调用报解码错误
2019-10-11 本文已影响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