【Only one connection receive subscriber allowed with】

Only one connection receive subscriber allowed with 只允许一个连接接收订阅者

1.问题原因
在使用spring-cloud-gateway当作网关服务,当收到post请求,且content-type为application/x-www-form-urlencoded时,网关服务报如下异常:
Only one connection receive subscriber allowed with

2.解决方案

方法一:

其实这个问题是在spring-boot-2.0.5这个版本上才出现的,所以将版本改为2.0.4即可,如果不想改版本号可参考方法二。

方法二:

使用如下代码禁用HiddenHttpMethodFilter 过滤器,该过滤器的作用请参考链接: 
(https://blog.csdn.net/geloin/article/details/7444321)
(https://github.com/spring-cloud/spring-cloud-gateway/issues/541)
    @Bean
    public HiddenHttpMethodFilter hiddenHttpMethodFilter() {undefined
        return new HiddenHttpMethodFilter() {undefined
            @Override
            public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) {undefined
                return chain.filter(exchange);
            }
        };
    }
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值