当前位置: 首页 > news >正文

解决GateWay报错:Exceeded limit on max bytes to buffer : 262144

场景: 前端传来了一个大的字符串 发现请求不通 一番调试发现SpringGateway 默认内存缓冲区262144字节
网上查了很多种常见的解决方案无效之后 直接重写底层

网友的解决方案

方案1(无效)

直接修改缓冲区大小

spring:codec:max-in-memory-size: 1048576

方案2(无效)

方案3 无效

gateway-2.2.3以上版本修复了该bug,在GatewayAutoConfiguration中加入了配置写入,但只限ReadBodyPredicateFactory类,如自定义类型需要使用方案二。

package org.springframework.cloud.gateway.handler.predicate;
...
public class ReadBodyPredicateFactoryextends AbstractRoutePredicateFactory<ReadBodyPredicateFactory.Config> {
...private final List<HttpMessageReader<?>> messageReaders;public ReadBodyPredicateFactory() {super(Config.class);this.messageReaders = HandlerStrategies.withDefaults().messageReaders();}/*** GatewayAutoConfiguration初始化配置写入相关配置*/public ReadBodyPredicateFactory(List<HttpMessageReader<?>> messageReaders) {super(Config.class);this.messageReaders = messageReaders;}
...}

方案4(无效)

重写ReadBodyPredicateFactory,注入ServerCodecConfigurer,使用ServerCodecConfigurer.getReaders()获取相关配置。

...
/*** @description: 自定义ReadBodyPredicateFactory,copy之ReadBodyPredicateFactory* @author: lizz* @date: 2020/6/8 14:22*/
@Component
public class GwReadBodyPredicateFactory extends AbstractRoutePredicateFactory<GwReadBodyPredicateFactory.Config> {/*** 获取Spring配置,解决最大body问题*/@AutowiredServerCodecConfigurer codecConfigurer;@Override@SuppressWarnings("unchecked")public AsyncPredicate<ServerWebExchange> applyAsync(GwReadBodyPredicateFactory.Config config) {
...return new AsyncPredicate<ServerWebExchange>() {@Overridepublic Publisher<Boolean> apply(ServerWebExchange exchange) {return ServerWebExchangeUtils.cacheRequestBodyAndRequest(exchange,(serverHttpRequest) -> ServerRequest.create(exchange.mutate().request(serverHttpRequest).build(), codecConfigurer.getReaders()).bodyToMono(inClass).doOnNext(objectValue -> exchange.getAttributes().put(CACHE_REQUEST_BODY_OBJECT_KEY, objectValue)).map(objectValue -> config.getPredicate().test(objectValue)));
...
}

方案5 有效

直接重写SpringGateway底层处理请求请求的 

org.springframework.core.codec.AbstractDataBufferDecoder类
/** Copyright 2002-2019 the original author or authors.** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file except in compliance with the License.* You may obtain a copy of the License at**      https://www.apache.org/licenses/LICENSE-2.0** Unless required by applicable law or agreed to in writing, software* distributed under the License is distributed on an "AS IS" BASIS,* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.* See the License for the specific language governing permissions and* limitations under the License.*/package org.springframework.core.codec;import java.util.Map;import org.reactivestreams.Publisher;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;import org.springframework.core.ResolvableType;
import org.springframework.core.io.buffer.DataBuffer;
import org.springframework.core.io.buffer.DataBufferUtils;
import org.springframework.lang.Nullable;
import org.springframework.util.MimeType;/*** 重写SpringWebFex底层 为了解决GateWay报错:Exceeded limit on max bytes to buffer : 262144 错误* Abstract base class for {@code Decoder} implementations that can decode* a {@code DataBuffer} directly to the target element type.** <p>Sub-classes must implement {@link #decodeDataBuffer} to provide a way to* transform a {@code DataBuffer} to the target data type. The default* {@link #decode} implementation transforms each individual data buffer while* {@link #decodeToMono} applies "reduce" and transforms the aggregated buffer.** <p>Sub-classes can override {@link #decode} in order to split the input stream* along different boundaries (e.g. on new line characters for {@code String})* or always reduce to a single data buffer (e.g. {@code Resource}).** @author Rossen Stoyanchev* @since 5.0* @param <T> the element type*/
@SuppressWarnings("deprecation")
public abstract class AbstractDataBufferDecoder<T> extends AbstractDecoder<T> {private int maxInMemorySize = 256 * 1024*10;protected AbstractDataBufferDecoder(MimeType... supportedMimeTypes) {super(supportedMimeTypes);}/*** Configure a limit on the number of bytes that can be buffered whenever* the input stream needs to be aggregated. This can be a result of* decoding to a single {@code DataBuffer},* {@link java.nio.ByteBuffer ByteBuffer}, {@code byte[]},* {@link org.springframework.core.io.Resource Resource}, {@code String}, etc.* It can also occur when splitting the input stream, e.g. delimited text,* in which case the limit applies to data buffered between delimiters.* <p>By default this is set to 256K.* @param byteCount the max number of bytes to buffer, or -1 for unlimited* @since 5.1.11*/public void setMaxInMemorySize(int byteCount) {this.maxInMemorySize = byteCount;}/*** Return the {@link #setMaxInMemorySize configured} byte count limit.* @since 5.1.11*/public int getMaxInMemorySize() {return this.maxInMemorySize;}@Overridepublic Flux<T> decode(Publisher<DataBuffer> input, ResolvableType elementType,@Nullable MimeType mimeType, @Nullable Map<String, Object> hints) {return Flux.from(input).map(buffer -> decodeDataBuffer(buffer, elementType, mimeType, hints));}@Overridepublic Mono<T> decodeToMono(Publisher<DataBuffer> input, ResolvableType elementType,@Nullable MimeType mimeType, @Nullable Map<String, Object> hints) {return DataBufferUtils.join(input, this.maxInMemorySize).map(buffer -> decodeDataBuffer(buffer, elementType, mimeType, hints));}/*** How to decode a {@code DataBuffer} to the target element type.* @deprecated as of 5.2, please implement* {@link #decode(DataBuffer, ResolvableType, MimeType, Map)} instead*/@Deprecated@Nullableprotected T decodeDataBuffer(DataBuffer buffer, ResolvableType elementType,@Nullable MimeType mimeType, @Nullable Map<String, Object> hints) {return decode(buffer, elementType, mimeType, hints);}}

相关文章:

  • matlab操作方法(三)——matlab中的数字图像(读取、显示、保存)
  • 基于微信小程序的校园二手闲置物品交易平台的设计与实现
  • 【期末复习向】常见的激活函数
  • 常见的工作流编排引擎
  • 基于docker容器化部署微服务
  • 云计算大屏,可视化云计算分析平台(云实时数据大屏PSD源文件)
  • 【Linux服务器Java环境搭建】09 在CentOS系统中安装和配置clickhouse数据库
  • Active Objects设计模式
  • Pandas实践_分组
  • 020 OpenCV 轮廓、外接圆、外接矩形
  • Postman-脚本自动化及定时执行脚本(7)
  • Mac 中文版 Navicat Premium 16 下载安装详细教程
  • LeetCode力扣每日一题(Java):58、最后一个单词的长度
  • 内网服务器部署maven私服简记
  • 微信小程序map视野发生改变时切换定位点
  • C语言笔记(第一章:C语言编程)
  • Java小白进阶笔记(3)-初级面向对象
  • Linux编程学习笔记 | Linux多线程学习[2] - 线程的同步
  • MYSQL如何对数据进行自动化升级--以如果某数据表存在并且某字段不存在时则执行更新操作为例...
  • rc-form之最单纯情况
  • Vue学习第二天
  • 快速构建spring-cloud+sleuth+rabbit+ zipkin+es+kibana+grafana日志跟踪平台
  • 实现菜单下拉伸展折叠效果demo
  • 手写一个CommonJS打包工具(一)
  • 微信小程序设置上一页数据
  • 我感觉这是史上最牛的防sql注入方法类
  • LevelDB 入门 —— 全面了解 LevelDB 的功能特性
  • NLPIR智能语义技术让大数据挖掘更简单
  • ​flutter 代码混淆
  • ​软考-高级-系统架构设计师教程(清华第2版)【第20章 系统架构设计师论文写作要点(P717~728)-思维导图】​
  • ​一些不规范的GTID使用场景
  • #ifdef 的技巧用法
  • $.each()与$(selector).each()
  • (1)(1.13) SiK无线电高级配置(六)
  • (1)SpringCloud 整合Python
  • (20)目标检测算法之YOLOv5计算预选框、详解anchor计算
  • (Bean工厂的后处理器入门)学习Spring的第七天
  • (delphi11最新学习资料) Object Pascal 学习笔记---第5章第5节(delphi中的指针)
  • (PWM呼吸灯)合泰开发板HT66F2390-----点灯大师
  • (Python第六天)文件处理
  • (考研湖科大教书匠计算机网络)第一章概述-第五节1:计算机网络体系结构之分层思想和举例
  • (四)linux文件内容查看
  • (四)图像的%2线性拉伸
  • (学习日记)2024.03.25:UCOSIII第二十二节:系统启动流程详解
  • ***原理与防范
  • .describe() python_Python-Win32com-Excel
  • .NET 表达式计算:Expression Evaluator
  • .NET/C# 使用 ConditionalWeakTable 附加字段(CLR 版本的附加属性,也可用用来当作弱引用字典 WeakDictionary)
  • @data注解_SpringBoot 使用WebSocket打造在线聊天室(基于注解)
  • @Repository 注解
  • @RunWith注解作用
  • @vue/cli脚手架
  • [20190401]关于semtimedop函数调用.txt
  • [C#] 基于 yield 语句的迭代器逻辑懒执行
  • [caffe(二)]Python加载训练caffe模型并进行测试1