spring cloud gateway
413Request Entity Too Large
Get请求,参数很长,但是直接请求服务正常,从gateway请求就会报错
排除nginx的原因
解决方案:
@Component
public class NettyConfiguration implements WebServerFactoryCustomizer<NettyReactiveWebServerFactory> {
@Value("${server.max-initial-line-length:10485760}")
private int maxInitialLingLength;
@Override
public void customize(NettyReactiveWebServerFactory container) {
container.addServerCustomizers(
httpServer -> httpServer.httpRequestDecoder(
httpRequestDecoderSpec -> httpRequestDecoderSpec.maxInitialLineLength(maxInitialLingLength)
)
);
}
}
参考链接:https://github.com/spring-cloud/spring-cloud-gateway/issues/402