Spring Cloud Feign 例子(日志,局部超时,失败断容,脱离SpringCloud使用Feign)

本文主要是介绍Spring Cloud Feign 例子(日志,局部超时,失败断容,脱离SpringCloud使用Feign),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

依赖

    implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'implementation 'io.github.openfeign:feign-okhttp'

properties配置


全局超时
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=5000针对第三方接口超时 
hystrix.command.IService#QueryAll(Integer,String).execution.isolation.thread.timeoutInMilliseconds=20000

config配置

@Configuration // 扫包目录下此注解 为全局配置
public class FeignConfig {private static final int TIME_OUT = 55;@Beanpublic okhttp3.OkHttpClient okHttpClient(CQInterceptor cqInterceptor) {Logger logger = LoggerFactory.getLogger(OkHttpClient.class);HttpLoggingInterceptor logInterceptor = new HttpLoggingInterceptor(logger::info);logInterceptor.level(HttpLoggingInterceptor.Level.BODY);return new OkHttpClient.Builder().connectTimeout(TIME_OUT, TimeUnit.SECONDS).readTimeout(TIME_OUT, TimeUnit.SECONDS).writeTimeout(TIME_OUT, TimeUnit.SECONDS).addInterceptor(cqInterceptor)//自定义拦截器.addInterceptor(logInterceptor)//注入日志拦截.build();}@Beanpublic CQInterceptor cqInterceptor() {return new CQInterceptor();}@Beanpublic Encoder feignFormEncoder(ObjectFactory<HttpMessageConverters> messageConverters) {return new SpringFormEncoder(new SpringEncoder(messageConverters));}}

自定义拦截器

public class CQInterceptor implements Interceptor {private static final String METHOD_GET = "GET";private static final String METHOD_POST = "POST";@Value(value = "${auth.authKey}")private String authKey;@Overridepublic Response intercept(Chain chain) throws IOException {Request request = chain.request();boolean isCQRequest = chain.request().url().pathSegments().contains("mock");if (isCQRequest) {if (METHOD_GET.equals(request.method())) {//如果是get请求HttpUrl newUrl = request.url().newBuilder().addEncodedQueryParameter("authKey", authKey).build();request = request.newBuilder().url(newUrl).build();} else if (METHOD_POST.equals(request.method())) {HttpUrl newUrl = request.url().newBuilder().addEncodedQueryParameter("authKey", authKey).build();request = request.newBuilder().url(newUrl).build();}}log.info("Hey there, this is my CQ-request: " + request);Response response = chain.proceed(request);if (isCQRequest) {String contentType = response.header("content-type");if (StringUtils.containsIgnoreCase(contentType, MediaType.APPLICATION_JSON_VALUE)) {okhttp3.MediaType mediaType = okhttp3.MediaType.parse(contentType);String content = response.body().string();ResponseBody responseBody = ResponseBody.create(JSONUtils.recursive(content).toString(), mediaType);response = response.newBuilder().body(responseBody).build();}}log.info("Hey there, this is my CQ-response: " + response);return response;}}

IService类

@FeignClient(name = "api-service", url = "${demo.baseUrl}", path = "", fallbackFactory = DemoFallbackFactory.class)
public interface IService{@GetMapping(value = "/demo")JsonResult<String> queryAll(@RequestParam(name = "IdNumber") Integer IdNumber, @RequestParam(name = "IdType") String IdType);}

DemoFallbackFactory 用于生成fallback类示例,

@Component
@Slf4j
public class DemoFallbackFactory implements FallbackFactory<IService> {private static JsonResult serviceNotFoundError() {return JsonResult.ret(ResultType.DATA_NO_CONNECTIONINFO);}@Overridepublic IService create(Throwable cause) {Throwable rootCause = ExceptionUtils.getRootCause(cause);if (rootCause instanceof ClientException) {String msg = ((ClientException) rootCause).getErrorMessage();if (StringUtils.startsWith(msg, "Load balancer does not have available server for client")) {String client = msg.replace("Load balancer does not have available server for client:", "");log.error("服务 {} 未启动", client);}} else {log.error("服务调用失败", cause);}return (IService) Enhancer.create(IService.class, (MethodInterceptor) (o, method, objects, methodProxy) -> serviceNotFoundError());}}

Spring boot 使用 Feign 脱离 Spring Cloud Feign

修改 config配置 新增

    @Resourceprivate Encoder feignFormEncoder;@Resourceprivate Decoder feignDecoder;@Resourceprivate LoadBalancerClient loadBalancerClient;@Beanpublic Encoder feignFormEncoder(ObjectFactory<HttpMessageConverters> messageConverters) {return new SpringFormEncoder(new SpringEncoder(messageConverters));}@Beanpublic Decoder feignDecoder(ObjectFactory<HttpMessageConverters> messageConverters) {return new SpringDecoder(messageConverters);}@BeanIService iService(){loadBalancerClient.choose("WX-MPS").getHost(); //此方法是获取其他微服务Feign的url ,可用于将本地微服务接口 换成 普通接口 ,获取其他微服务host port 作用return Feign.builder().client(new feign.okhttp.OkHttpClient(okHttpClient)).encoder(feignFormEncoder).decoder(feignDecoder).options(new Request.Options(2000, 3500)).retryer(new Retryer.Default(5000, 5000, 3)).contract(new SpringMvcContract())// 加入这个可以可以继续使用@GetMapping之类的接口.target(IService .class, url);}

注释掉 FeignClient 接口

//@FeignClient(name = "api-service", url = "${demo.baseUrl}", path = "", fallbackFactory = DemoFallbackFactory.class)
public interface IService{@GetMapping(value = "/demo")JsonResult<String> queryAll(@RequestParam(name = "IdNumber") Integer IdNumber, @RequestParam(name = "IdType") String IdType);}

调用方法 不变

@RestController
public class QueryController {@Resourceprivate IService iService;@GetMapping(value = "/QueryPersonId")public JsonResult queryPersonId(@RequestParam("IdNumber") Integer IdNumber, @RequestParam(value = "IdType", defaultValue = "C1") String IdType) {JsonResult<String> stringJsonResult = iService.queryAll(IdNumber, IdType);Assert.state(stringJsonResult.isSuccessful(), stringJsonResult.getMsg());return JsonResult.success(stringJsonResult.getObj());}

这篇关于Spring Cloud Feign 例子(日志,局部超时,失败断容,脱离SpringCloud使用Feign)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/957776

相关文章

如何使用celery进行异步处理和定时任务(django)

《如何使用celery进行异步处理和定时任务(django)》文章介绍了Celery的基本概念、安装方法、如何使用Celery进行异步任务处理以及如何设置定时任务,通过Celery,可以在Web应用中... 目录一、celery的作用二、安装celery三、使用celery 异步执行任务四、使用celery

使用Python绘制蛇年春节祝福艺术图

《使用Python绘制蛇年春节祝福艺术图》:本文主要介绍如何使用Python的Matplotlib库绘制一幅富有创意的“蛇年有福”艺术图,这幅图结合了数字,蛇形,花朵等装饰,需要的可以参考下... 目录1. 绘图的基本概念2. 准备工作3. 实现代码解析3.1 设置绘图画布3.2 绘制数字“2025”3.3

在Ubuntu上部署SpringBoot应用的操作步骤

《在Ubuntu上部署SpringBoot应用的操作步骤》随着云计算和容器化技术的普及,Linux服务器已成为部署Web应用程序的主流平台之一,Java作为一种跨平台的编程语言,具有广泛的应用场景,本... 目录一、部署准备二、安装 Java 环境1. 安装 JDK2. 验证 Java 安装三、安装 mys

Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单

《Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单》:本文主要介绍Springboot的ThreadPoolTaskScheduler线... 目录ThreadPoolTaskScheduler线程池实现15分钟不操作自动取消订单概要1,创建订单后

JAVA中整型数组、字符串数组、整型数和字符串 的创建与转换的方法

《JAVA中整型数组、字符串数组、整型数和字符串的创建与转换的方法》本文介绍了Java中字符串、字符数组和整型数组的创建方法,以及它们之间的转换方法,还详细讲解了字符串中的一些常用方法,如index... 目录一、字符串、字符数组和整型数组的创建1、字符串的创建方法1.1 通过引用字符数组来创建字符串1.2

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

SpringCloud集成AlloyDB的示例代码

《SpringCloud集成AlloyDB的示例代码》AlloyDB是GoogleCloud提供的一种高度可扩展、强性能的关系型数据库服务,它兼容PostgreSQL,并提供了更快的查询性能... 目录1.AlloyDBjavascript是什么?AlloyDB 的工作原理2.搭建测试环境3.代码工程1.

Java调用Python代码的几种方法小结

《Java调用Python代码的几种方法小结》Python语言有丰富的系统管理、数据处理、统计类软件包,因此从java应用中调用Python代码的需求很常见、实用,本文介绍几种方法从java调用Pyt... 目录引言Java core使用ProcessBuilder使用Java脚本引擎总结引言python