feign.FeignException: status 400 reading :

请求方调用报错:

feign.FeignException: status 400 reading-LMLPHP

服务方被调用报错:

feign.FeignException: status 400 reading-LMLPHP

用fegin给redis设置缓存时报错,刚好 卡到8k这个临界点 ,就一直报错...springboot内置tomcat的参数限制是8k

	/**
* Maximum size of the HTTP message header.
*/
private DataSize maxHttpHeaderSize = DataSize.ofKilobytes(8);

在服务方修改配置, 增大size的限制

默认配置: server.max-http-header-size=20480 后边加几个0就行了

参考:

https://blog.csdn.net/chen449757520/article/details/90515051

05-18 08:00