详解spring cloud zuul网关修改为短连接方法-亚博电竞手机版

目录

  • 一、问题分析
  • 二、解决方式

一、问题分析

之前在用zuul网关的时候,请求几次然后连接就断开了。原因是因为http1.1之后,默认走的都是connection=keep-alive 长连接。但没有心跳维持,顾1分钟断开一次。但restful一般都是走短连接就行了。因此想着只要修改头部connection属性就行了.

就是在过滤器中修改zuul的requestcontext ctx对象

//设置请求为短连接 ctx.addzuulrequestheader("connection", "close");

再次请求之后发现

​纳尼,怎么还是长连接。那么说明可能是我的设置没有生效或者被覆盖掉了。遇到问题,除了度娘,跟着源码走一遭也是最好的方式。花了大半天时间,终于让我找到原因了。

原因是代理类proxyrequesthelper里面有段逻辑。

public boolean isincludedheader(string headername) { string name = headername.tolowercase(); requestcontext ctx = requestcontext.getcurrentcontext(); if (ctx.containskey(ignored_headers)) { object object = ctx.get(ignored_headers); if (object instanceof collection && ((collection) object).contains(name)) { return false; } } switch (name) { case "host": if(addhostheader) { return true; } case "connection": case "content-length": case "server": case "transfer-encoding": case "x-application-con恰卡编程网text": return false; default: return true; } }

如果头部存在"connection": "content-length": &恰卡编程网quot;server": "transfer-encoding": "x-application-context"这些头的话都被跳过。不会被设置成功。应该是zuul自己的一个机制把。

二、解决方式

那么问题找到了,该怎么修改呢?那么只能自定义路由了。继承并重写这个类。

1、实现自定义路由配置customzuulconfig

@component public class customzuulconfig { @autowired zuulproperties zuulproperties; @value("${servletpath}") private string servletpath; @bean public customroutelocator routelocator() { customroutelocator routelocator = new customroutelocator(servletpath, this.zuulproperties); return routelocator; } www.cppcns.com }

2、实现自定义请求代理工具类 重写isincludedheader方法。

public class customrequesthelper extends proxyrequesthelper { @override public boolean isincludedheader(string headername) { string name = headername.tolowercase(); requestcontext ctx = requestcontext.getcurrentcontext(); if (ctx.containskey(ignored_headers)) { object object = ctx.get(ignored_headers); if (object instanceof collection && ((collection)object).contains(name)) { return false; } } switch (name) { case "content-length": case "host": case "server": case "transfer-encoding": case "x-application-context": return false; default: return true; } } }

3、重写实现代理配置类

@configuration @enablezuulproxy public class customzuulproxyconfig extends zuulproxyautoconfiguration { @bean @override public simplehostroutingfilter simplehostroutingfilter(proxyrequesthelper helper, zuulproperties zuulproperties, apachehttpclientconnectionmanagerfactory connectionmanagerfactory, apachehttpclientfactory httpclientfactory) { customrequesthelper customrequesthelper = new customrequesthelper(); return new simplehostroutingfilter(customrequesthelper, zuulproperties, connectionmanagerfactory, httpclientfactory); } }

然后重新启动,查看请求头。

​修改成功。所以说,学会通过看源码查问题,还是很重要的哈~

到此这篇关于详解spring cloud zuul网关修改为短连接方法的文章就介绍到这了,更多相关spring cloud zuul短连接内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

网站地图