spring-cloud-starter-openfeign 4.0.4配置超时时间和默认重试机制,测试超时场景

配置超时时间application.yml

spring:cloud:openfeign:client:config:testClient:connectTimeout: 1000readTimeout: 10000loggerLevel: basicretryer: feign.Retryer.Default

配置openfeignclient日志打印

logging:level:root: DEBUG

openfeignclient服务

@Controller
public class TestController {@Autowiredprivate TestClient testClient;@GetMapping("/delay/test")public ResponseEntity<String> testdelay() {testClient.delay();return ResponseEntity.ok("test  Delayed response");}
}
@FeignClient(url = "http://localhost:8081/", name="testClient")
public interface TestClient {@GetMapping(value = "/delay", headers = {"Content-Type=application/json;charset=UTF-8"})void delay();
}
@SpringBootApplication
@EnableAuroraFeignClients
public class OpenFeignCilentApplication {public static void main(String[] args) {SpringApplication.run(OpenFeignCilentApplication.class, args);}}

mock dealy服务

@RestController
public class DelayController {@GetMapping("/delay")public ResponseEntity<String> delayEndpoint() throws InterruptedException {Thread.sleep(50000);return ResponseEntity.ok("Delayed response");}
}
@SpringBootApplication
public class MockDelayApplication {public static void main(String[] args) {SpringApplication.run(MockDelayApplication.class, args);}}

测试Connect timed out

配置@FeignClient的url中的ip地址为不可路由的IP地址,如192.168.8.8,openfeignclient配置connectTimeout为10秒,

测试结果

"http://192.168.8.8:8080/  尝试连接到不可路由的IP地址,例如192.168.8.8。 Connect timed out
2024-03-14T19:08:24.397+08:00  INFO 30452 --- [io-18009-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2024-03-14T19:08:24.397+08:00  INFO 30452 --- [io-18009-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 0 ms
2024-03-14T19:08:24.413+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://192.168.8.8:8080/delay HTTP/1.1
2024-03-14T19:08:25.423+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Connect timed out (1009ms)
2024-03-14T19:08:25.580+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING
2024-03-14T19:08:25.580+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://192.168.8.8:8080/delay HTTP/1.1
2024-03-14T19:08:26.595+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Connect timed out (1015ms)
2024-03-14T19:08:26.821+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING
2024-03-14T19:08:26.821+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://192.168.8.8:8080/delay HTTP/1.1
2024-03-14T19:08:27.826+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Connect timed out (1005ms)
2024-03-14T19:08:28.166+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING
2024-03-14T19:08:28.166+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://192.168.8.8:8080/delay HTTP/1.1
2024-03-14T19:08:29.167+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Connect timed out (1000ms)
2024-03-14T19:08:29.675+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING
2024-03-14T19:08:29.675+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://192.168.8.8:8080/delay HTTP/1.1
2024-03-14T19:08:30.680+08:00 DEBUG 30452 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Connect timed out (1004ms)
2024-03-14T19:08:30.685+08:00 ERROR 30452 --- [io-18009-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: feign.RetryableException: Connect timed out executing GET http://192.168.8.8:8080/delay] with root causejava.net.SocketTimeoutException: Connect timed out

测试Read timed out

配置@FeignClient的url中的ip地址和端口都为可访问,接口设置延迟,mock dealy服务设置延迟50秒,openfeignclient配置readTimeout为10秒,

测试结果

2024-03-14T19:01:43.090+08:00  INFO 32740 --- [io-18009-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'2024-03-14T19:01:43.090+08:00  INFO 32740 --- [io-18009-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'2024-03-14T19:01:43.090+08:00  INFO 32740 --- [io-18009-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 0 ms2024-03-14T19:01:43.106+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8080/delay HTTP/1.12024-03-14T19:01:53.110+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Read timed out (10004ms)2024-03-14T19:01:53.269+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING2024-03-14T19:01:53.269+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8080/delay HTTP/1.12024-03-14T19:02:03.279+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Read timed out (10009ms)2024-03-14T19:02:03.505+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING2024-03-14T19:02:03.505+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8080/delay HTTP/1.12024-03-14T19:02:13.512+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Read timed out (10006ms)2024-03-14T19:02:13.850+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING2024-03-14T19:02:13.850+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8080/delay HTTP/1.12024-03-14T19:02:23.859+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Read timed out (10008ms)2024-03-14T19:02:24.368+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING2024-03-14T19:02:24.368+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8080/delay HTTP/1.12024-03-14T19:02:34.374+08:00 DEBUG 32740 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR SocketTimeoutException: Read timed out (10005ms)2024-03-14T19:02:34.378+08:00 ERROR 32740 --- [io-18009-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: feign.RetryableException: Read timed out executing GET http://localhost:8080/delay] with root causejava.net.SocketTimeoutException: Read timed out

测试Connection refused

配置@FeignClient的url中的ip地址为可访问,端口不可访问,

测试结果

2024-03-14T19:10:36.085+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8081/delay HTTP/1.12024-03-14T19:10:36.091+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR ConnectException: Connection refused: no further information (5ms)2024-03-14T19:10:36.258+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING2024-03-14T19:10:36.258+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8081/delay HTTP/1.12024-03-14T19:10:36.259+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR ConnectException: Connection refused: no further information (0ms)2024-03-14T19:10:36.486+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING2024-03-14T19:10:36.486+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8081/delay HTTP/1.12024-03-14T19:10:36.487+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR ConnectException: Connection refused: no further information (0ms)2024-03-14T19:10:36.825+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING2024-03-14T19:10:36.825+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8081/delay HTTP/1.12024-03-14T19:10:36.826+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR ConnectException: Connection refused: no further information (0ms)2024-03-14T19:10:37.333+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> RETRYING2024-03-14T19:10:37.333+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] ---> GET http://localhost:8081/delay HTTP/1.12024-03-14T19:10:37.357+08:00 DEBUG 28072 --- [io-18009-exec-1] c.e.openfeigncilent.client.TestClient    : [TestClient#delay] <--- ERROR ConnectException: Connection refused: no further information (23ms)2024-03-14T19:10:37.362+08:00 ERROR 28072 --- [io-18009-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: feign.RetryableException: Connection refused: no further information executing GET http://localhost:8081/delay] with root causejava.net.ConnectException: Connection refused: no further information

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/745226.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【C/C++ 学习笔记】指针

【C/C 学习笔记】指针 视频地址: Bilibili 概念 可以通过指针间接访问内存用于保存地址 使用 通过 & 可以获取数据的指针 通过 * 可以取得指针的数据 指针的数据类型就是 数据类型 * int number 10;int *p &number;// 10 cout << "number: " …

P2572 [SCOI2010] 序列操作 线段树维护连续子段和(01串)

浅调两个钟&#xff0c;终于A掉了&#xff0c;还是不熟练啊 这道题是P4513 小白逛公园 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)的变种 维护的更多&#xff0c;可以说&#xff0c;在维护连续的1&#xff0c;实质上就是维护最大连续子段和。 0 l r 把 [l,r] 区间内的所…

Wmware安装Linux(centerOS、Ubuntu版本)

目录 1、安装wmware 2、center版本 3、ubuntu版本 1、安装wmware 此处不做展开。 2、center版本 需要提前下载的文件&#xff1a; 无图形化界面https://mirrors.aliyun.com/centos/7.9.2009/isos/x86_64/CentOS-7-x86_64-Minimal-2009.iso 有图形化界面https://mirrors.a…

本地环境下运行Spark程序

1. 前言 终于又有实际的大数据计算业务功能开发了&#xff0c;是对一个以前用SpringBoot来处理Elasticsearch集群上的日志数据的计算程序&#xff0c;这个程序的最大问题就是单进程内存会达到几十G&#xff0c;直到最后运行在中途出现OutOfMemoryError而崩溃掉&#xff0c;毕竟…

增删卜易——八宫六十四卦

之前看倪海厦的《天纪》笔记里面提到了六十四卦世应,觉得不知道这个世应是啥意思。很长时间就没看了,偶然间看到了张文江教授写的一本书《潘雨廷先生谈话录》提到了《卜筮正宗》,“卜筮最后的判断是非理性转义,其他一切都只是形式”,“明人的著作,从京氏易出,如今天几日…

STM32 学习12 输入捕获与触摸按键

STM32 学习12 输入捕获与触摸按键 一、输入捕获介绍1. 概念2. STM32F1 资源3. 捕获原理 二、输入捕获配置步骤1. 使能时钟、设置端口模式2. 初始化定时器3. 设置捕获参数4. 开启捕获和定时器中断&#xff08;溢出中断|更新中断&#xff09;6. 编写定时器中断服务函数7. 使能定时…

针对教育行业的网络安全方案有哪些

智慧校园”是教育信息化进入高级阶段的表现形式&#xff0c;比“数字校园”更先进。集体知识共融、共生、业务应用融合创新、移动互联网物联网高速泛在是其重要特征。特别是在互联网教育的大环境下&#xff0c;为了更好的发挥智慧化教学服务和智慧化教学管理功能&#xff0c;需…

node.js入门—day02

个人名片&#xff1a; &#x1f60a;作者简介&#xff1a;一名大二在校生 &#x1f921; 个人主页&#xff1a;坠入暮云间x &#x1f43c;座右铭&#xff1a;给自己一个梦想&#xff0c;给世界一个惊喜。 &#x1f385;**学习目标: 坚持每一次的学习打卡 文章目录 什么是单线程…

计算机服务器中了devos勒索病毒怎么解密,devos勒索病毒解密工具流程

随着网络技术的不断发展与更新&#xff0c;越来越多的企业利用网络开展了各项工作业务&#xff0c;网络也为企业提供了极大便利&#xff0c;大大提高了办公效率。但网络是一把双刃剑&#xff0c;企业的数据安全问题一直是企业关心的主要话题&#xff0c;近日&#xff0c;云天数…

InDesign 2024:创意不熄火,设计不止步mac/win版

InDesign 2024&#xff0c;不仅仅是一个设计软件更新&#xff0c;它更是设计界的一次革命性飞跃。这款全新的设计软件将为您打开前所未有的创意大门&#xff0c;让您在设计的海洋中畅游无阻。 InDesign 2024 mac/win版获取 InDesign 2024以其卓越的性能和稳定性&#xff0c;确…

钉钉魔法盒:解锁企业数字化转型新密码

在数字化的浪潮中&#xff0c;一家公司在企业团队管理和商场综合运营中致力于实现数字化转型。于是&#xff0c;该公司在与无雀科技商讨后&#xff0c;决定引入钉钉平台&#xff0c;不仅要打造商业地产平台&#xff0c;更要优化团队管理流程&#xff0c;提升组织运营效率。 针对…

Linux中mysql的安装、远程访问、基础操作、文件导入

Linux中mysql的安装、远程访问、基础操作、文件导入 cheet card1. 安装1. 使用root账号安装mysql 2. 启动mysql并创建root、管理员两个账号3. 基础操作3.1 数据库的查看、创建、修改、删除3.2 mysql的数据类型3.3 数据表的基本操作3.4 数据表结构的修改3.5 表中数据的增、删、改…

git基础命令(一)

目录 基础概念git statusgit addgit diffgit loggit commit文件可以处于以下三种状态之一远程存储库与本地存储库参考 用于知识记录。后续有新的的内容&#xff0c;例子&#xff0c;将持续更新本文档。 基础概念 工作树&#xff1a;git add 之前&#xff0c;变动内容的文件列表…

华为认证云计算专家(HCIE-Cloud Computing)--问答题

华为认证云计算专家&#xff08;HCIE-Cloud Computing&#xff09;–问答题 38 处于退出状态的容器&#xff0c;会占用系统什么资源? 参考答案&#xff1a;宿主机文件系统资源 39 在docker中&#xff0c;删除所有容器的命令是什么? 参考答案&#xff1a;docker ps -aq| xar…

从金蝶云星空到钉钉通过接口配置打通数据

从金蝶云星空到钉钉通过接口配置打通数据 对接系统金蝶云星空 金蝶K/3Cloud&#xff08;金蝶云星空&#xff09;是移动互联网时代的新型ERP&#xff0c;是基于WEB2.0与云技术的新时代企业管理服务平台。金蝶K/3Cloud围绕着“生态、人人、体验”&#xff0c;旨在帮助企业打造面…

想要自己制作一款游戏,需要掌握哪些基本技能?

你是否曾经沉浸在游戏的世界中&#xff0c;感受到游戏带来的无限乐趣&#xff1f;你是否曾经梦想能够亲手制作一款属于自己的游戏&#xff0c;为玩家带来独特的体验&#xff1f;然而&#xff0c;要实现自己的游戏创作梦想&#xff0c;并不是一件轻松的事情。需要掌握各种技能和…

蓝桥杯历年真题省赛java b组 2016年 第六届 剪邮票

一、题目 剪邮票 如【图1.jpg】, 有12张连在一起的12生肖的邮票。 现在你要从中剪下5张来&#xff0c;要求必须是连着的。 &#xff08;仅仅连接一个角不算相连&#xff09; 比如&#xff0c;【图2.jpg】&#xff0c;【图3.jpg】中&#xff0c;粉红色所示部分就是合格的剪取。…

机器学习 Python库 乱记录

MLFlow—模型实验和跟踪 MLflow是一个平台&#xff0c;帮助你从头到尾管理你的机器学习实验&#xff0c;确保可追溯性和可重复性。它提供了一个集中的存储库&#xff0c;用于存储你的代码、数据和模型工件&#xff0c;以及一个跟踪系统&#xff0c;记录你所有的实验&#xff0c…

CSS 03

1.选择器 1.1 结构伪类选择器 代码&#xff1a; <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><title>结…

[Django 0-1] Core.Files

Core.Files 模块 Django 的核心模块之一&#xff0c;封装文件操作&#xff0c;提供对文件的上传、下载、删除、查看大小等功能。 提供的功能 存储后端解耦&#xff0c;支持多种存储后端&#xff0c;使得在不同存储后端中的文件数据都能以相同的方式操作文件上传、下载、删除…