文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

spring cloud gateway集成hystrix的方法

2023-06-20 16:05

关注

本篇内容介绍了“spring cloud gateway集成hystrix的方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

spring cloud gateway集成hystrix

本文主要研究一下spring cloud gateway如何集成hystrix

maven

<dependency>            <groupId>org.springframework.cloud</groupId>            <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>        </dependency>

添加spring-cloud-starter-netflix-hystrix依赖,开启hystrix

配置实例

hystrix.command.fallbackcmd.execution.isolation.thread.timeoutInMilliseconds: 5000spring:  cloud:    gateway:      discovery:        locator:          enabled: true      routes:      - id: employee-service        uri: lb://employee-service        predicates:        - Path=/employeepublic class HystrixGatewayFilterFactory extends AbstractGatewayFilterFactory<HystrixGatewayFilterFactory.Config> {    public static final String FALLBACK_URI = "fallbackUri";    private final DispatcherHandler dispatcherHandler;    public HystrixGatewayFilterFactory(DispatcherHandler dispatcherHandler) {        super(Config.class);        this.dispatcherHandler = dispatcherHandler;    }    @Override    public List<String> shortcutFieldOrder() {        return Arrays.asList(NAME_KEY);    }    public GatewayFilter apply(String routeId, Consumer<Config> consumer) {        Config config = newConfig();        consumer.accept(config);        if (StringUtils.isEmpty(config.getName()) && !StringUtils.isEmpty(routeId)) {            config.setName(routeId);        }        return apply(config);    }    @Override    public GatewayFilter apply(Config config) {        //TODO: if no name is supplied, generate one from command id (useful for default filter)        if (config.setter == null) {            Assert.notNull(config.name, "A name must be supplied for the Hystrix Command Key");            HystrixCommandGroupKey groupKey = HystrixCommandGroupKey.Factory.asKey(getClass().getSimpleName());            HystrixCommandKey commandKey = HystrixCommandKey.Factory.asKey(config.name);            config.setter = Setter.withGroupKey(groupKey)                    .andCommandKey(commandKey);        }        return (exchange, chain) -> {            RouteHystrixCommand command = new RouteHystrixCommand(config.setter, config.fallbackUri, exchange, chain);            return Mono.create(s -> {                Subscription sub = command.toObservable().subscribe(s::success, s::error, s::success);                s.onCancel(sub::unsubscribe);            }).onErrorResume((Function<Throwable, Mono<Void>>) throwable -> {                if (throwable instanceof HystrixRuntimeException) {                    HystrixRuntimeException e = (HystrixRuntimeException) throwable;                    if (e.getFailureType() == TIMEOUT) { //TODO: optionally set status                        setResponseStatus(exchange, HttpStatus.GATEWAY_TIMEOUT);                        return exchange.getResponse().setComplete();                    }                }                return Mono.error(throwable);            }).then();        };    }    //......}

这里创建了RouteHystrixCommand,将其转换为Mono,然后在onErrorResume的时候判断如果HystrixRuntimeException的failureType是FailureType.TIMEOUT类型的话,则返回GATEWAY_TIMEOUT(504, "Gateway Timeout")状态码。

RouteHystrixCommand

//TODO: replace with HystrixMonoCommand that we write    private class RouteHystrixCommand extends HystrixObservableCommand<Void> {        private final URI fallbackUri;        private final ServerWebExchange exchange;        private final GatewayFilterChain chain;        RouteHystrixCommand(Setter setter, URI fallbackUri, ServerWebExchange exchange, GatewayFilterChain chain) {            super(setter);            this.fallbackUri = fallbackUri;            this.exchange = exchange;            this.chain = chain;        }        @Override        protected Observable<Void> construct() {            return RxReactiveStreams.toObservable(this.chain.filter(exchange));        }        @Override        protected Observable<Void> resumeWithFallback() {            if (this.fallbackUri == null) {                return super.resumeWithFallback();            }            //TODO: copied from RouteToRequestUrlFilter            URI uri = exchange.getRequest().getURI();            //TODO: assume always?            boolean encoded = containsEncodedParts(uri);            URI requestUrl = UriComponentsBuilder.fromUri(uri)                    .host(null)                    .port(null)                    .uri(this.fallbackUri)                    .build(encoded)                    .toUri();            exchange.getAttributes().put(GATEWAY_REQUEST_URL_ATTR, requestUrl);            ServerHttpRequest request = this.exchange.getRequest().mutate().uri(requestUrl).build();            ServerWebExchange mutated = exchange.mutate().request(request).build();            return RxReactiveStreams.toObservable(HystrixGatewayFilterFactory.this.dispatcherHandler.handle(mutated));        }    }

Config

public static class Config {        private String name;        private Setter setter;        private URI fallbackUri;        public String getName() {            return name;        }        public Config setName(String name) {            this.name = name;            return this;        }        public Config setFallbackUri(String fallbackUri) {            if (fallbackUri != null) {                setFallbackUri(URI.create(fallbackUri));            }            return this;        }        public URI getFallbackUri() {            return fallbackUri;        }        public void setFallbackUri(URI fallbackUri) {            if (fallbackUri != null && !"forward".equals(fallbackUri.getScheme())) {                throw new IllegalArgumentException("Hystrix Filter currently only supports 'forward' URIs, found " + fallbackUri);            }            this.fallbackUri = fallbackUri;        }        public Config setSetter(Setter setter) {            this.setter = setter;            return this;        }    }

可以看到Config校验了fallbackUri,如果不为null,则必须以forward开头

小结

spring cloud gateway集成hystrix,分为如下几步:

“spring cloud gateway集成hystrix的方法”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯