Spring Cloud Alibaba体系使用OpenFeign与RestTemplate作为RPC组件

news/2024/11/22 17:28:57/

前言

​ 本篇将介绍Spring Cloud Alibaba使用OpenFeignRestTemplate进行RPC调用,并且将介绍两种RPC工具如何集成Sentinel进行系统保护。

OpenFeign

OpenFeign介绍

​ OpenFeign是一种声明式、模板化的HTTP客户端。 在Spring Cloud中使用OpenFeign,可以做到使用HTTP请求访问远程服务,就像调用本地方法一样的,开发者完全感知不到这是在调用远程方法,更感知不到在访问HTTP请求。

OpenFeign使用

​ 编写两个服务,一个provider服务account-svc一个consumer服务order-svc

Provider代码
  • pom依赖
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>io.redick.cloud</groupId><artifactId>ruuby-account</artifactId><version>${revision}</version></parent><artifactId>ruuby-account-svc</artifactId><packaging>jar</packaging><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId></dependency></dependencies>
</project>
  • application.yml配置
server:port: 8088
spring:application:name: account-svccloud:nacos:username: "nacos"password: "nacos"discovery:# 服务注册中心地址server-addr: 127.0.0.1:8848
  • 服务端代码
@SpringBootApplication
@EnableDiscoveryClient
public class AccountApplication {public static void main( String[] args ) {SpringApplication.run(AccountApplication.class, args);}@GetMapping(path = "/echo/{string}")public String echo(@PathVariable String string) {return "Hello Nacos Discovery " + string;}
}
Consumer代码
  • pom依赖

​ 对比之前的demo,增加了artifactIdspring-cloud-starter-openfeignOpenFeign依赖。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>io.redick.cloud</groupId><artifactId>ruuby-account</artifactId><version>${revision}</version></parent><artifactId>ruuby-account-svc</artifactId><packaging>jar</packaging><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId></dependency><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-loadbalancer</artifactId></dependency><!-- OpenFeign --><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-openfeign</artifactId></dependency></dependencies>
</project>
  • application.yml配置
server:port: 8089
spring:application:name: order-svccloud:nacos:username: "nacos"password: "nacos"discovery:# 服务注册中心地址server-addr: 127.0.0.1:8848
  • 服务启动代码
@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients(basePackages = {"io.redick.cloud.account"})
@AllArgsConstructor
public class OrderApplication {private final AccountService accountService;public static void main(String[] args) {SpringApplication.run(OrderApplication.class, args);}@GetMapping("/echo")public String echo(){return accountService.echo(appName);}
}

​ 在io.redick.cloud.account包下创建AccountService@FeignClient注解标注这是一个OpenFeign客户端,可以看到OpenFeign屏蔽了底层Http调用细节,可以像调用一个本地方法一样去进行远程调用,并且参数的序列化,反序列化也屏蔽了,对于开发人员来说使用起来更方便。

注:OpenFeign+@PathVariable 需要指定value否则会报错

@FeignClient(name = "account-svc", path = "/account")
public interface AccountService {@GetMapping(path = "/echo/{string}")String echo(@PathVariable(value="string") String string);
}
  • 测试
curl -X GET http://127.0.0.1:8089/order/feignEcho
Hello Nacos Discovery order-svc
  • 配置使用Nacos LoadBalancer

​ demo中没有配置LoadBalancer,因为引用了spring-cloud-starter-loadbalancer依赖,所以默认情况下使用spring-cloud-starter-loadbalancerRoundRobinLoadBalancer负载均衡器。Nacos Discovery提供了NacosLoadBalancer,通过如下配置开启NacosLoadBalancer

spring:cloud:loadbalancer:nacos:enabled: true
OpenFeign集成Sentinel

​ Spring Cloud Alibaba集成Sentinel引入spring-cloud-starter-alibaba-sentinel的starter,并且添加一些配置即可实现。

  • pom依赖
				<!-- SpringCloud Alibaba Sentinel --><dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-sentinel</artifactId></dependency><!-- Sentinel Datasource Nacos --><dependency><groupId>com.alibaba.csp</groupId><artifactId>sentinel-datasource-nacos</artifactId></dependency>
  • application.yml配置
spring:cloud:# sentinel支持sentinel:# 取消控制台懒加载eager: truetransport:dashboard: 127.0.0.1:8080# 动态数据源支持datasource:ds1:nacos:server-addr: 127.0.0.1:8848dataId: ${spring.application.name}-sentinel-${spring.profiles.active}.jsonnamespace: 3ef5e608-6ee8-4881-8e50-ed47a5a04af2groupId: DEFAULT_GROUPdata-type: json# 具体配置参考com.alibaba.cloud.sentinel.datasource.RuleTyperule-type: flow
# feign支持sentinel
feign:sentinel:enabled: true

​ Nacos配置中心增加dataId为${spring.application.name}-sentinel-${spring.profiles.active}.json的配置文件,并配置流控规则,配置如下:

[{"resource": "GET:http://account-svc/account/echo/{string}","count": 0,"grade": 0,"limitApp": "default"}
]
  • OpenFeign自定义降级
public class AccountCallback implements AccountService {@Overridepublic String echo(String string) {return "Sentinel circuit breaker!";}
}public class FeignConfiguration {@Beanpublic AccountCallback accountCallback() {return new AccountCallback();}
}

AccountService @FeignClient标签增加自定义配置和自定义降级。

@FeignClient(name = "account-svc", path = "/account", fallback = AccountCallback.class,configuration = FeignConfiguration.class)
public interface AccountService {/*** 注:OpenFeign+@PathVariable 需要指定value否则会报错** @param string String* @return String*/@GetMapping(path = "/echo/{string}")String echo(@PathVariable(value="string") String string);
}
  • 将Nacos上Sentinel配置count改为0,测试结果如下:
curl -X GET http://127.0.0.1:8089/order/feignEcho
Sentinel circuit breaker!

RestTemplate

​ 大部分代码参考上面的代码,下面是RestTemplate相关的配置代码,@LoadBalanced开启负载均衡,@SentinelRestTemplate是Sentinel注解,括号里的配置都是自定义降级,流控的配置。

创建RestTemplate Bean

@Configuration
public class RestTemplateConfiguration {@Bean@LoadBalanced@SentinelRestTemplate(blockHandler = "blockHandle", blockHandlerClass = SentinelHandleUtil.class,fallback = "fallback", fallbackClass = SentinelHandleUtil.class)public RestTemplate restTemplate() {RestTemplate restTemplate = new RestTemplate();// 链路追踪restTemplate.setInterceptors(Stream.of(new TraceIdRestTemplateInterceptor()).collect(Collectors.toList()));return restTemplate;}
}

自定义流控代码SentinelHandleUtil

public class SentinelHandleUtil {public static SentinelClientHttpResponse blockHandle(HttpRequest request, byte[] body, ClientHttpRequestExecution execution, BlockException exception) {return new SentinelClientHttpResponse(JSON.toJSONString(R.fail(null, Constants.FLOW, "Sentinel flow block!")));}public static SentinelClientHttpResponse fallback(HttpRequest request, byte[] body, ClientHttpRequestExecution execution, BlockException exception) {return new SentinelClientHttpResponse(JSON.toJSONString(R.fail(null, Constants.FLOW, "Sentinel flow block!")));}
}

application.yml配置开启Sentinel

# RestTemplate支持sentinel
resttemplate:sentinel:enabled: true

Nacos配置中心Sentinel配置文件增加配置

    {"resource": "GET:http://account-svc:8088/account/echo/order-svc","count": 0,"grade": 0,"limitApp": "default"}

测试结果

curl -X GET http://127.0.0.1:8089/order/echo
{"code":455,"msg":"Sentinel flow block!"}

总结

​ 致此Spring Cloud Alibaba集成OpenFeign,RestTemplate作为RPC,Spring Cloud LoadBalancer,NacosLoadBalancer作为负载均衡,Sentinel作为系统保护介绍完毕,相关底层逻辑感兴趣的可以自行Debug一下代码。

源码参考GitHub,如果对您有帮助麻烦点个赞支持下,谢谢!


http://www.ppmy.cn/news/646941.html

相关文章

premiere直接使用计算机素材,Premiere使用技巧之视频捕捉 -电脑资料

Adobe Premiere Pro提供了较为专业的视频捕捉功能&#xff0c;可以高质量的捕捉模拟信号(通过视频捕捉卡)和数字信号(通过IEEE 1394)&#xff0c; 在使用视频捕捉卡捕捉视频素材时&#xff0c;需要在工程设定的时候选择该视频捕捉卡提供硬件支持的视频压缩格式。而通过IEEE 139…

计算机属于什么学1001计算机属于什么学,怎样学电脑(初学电脑先学什么)

怎样学电脑(初学电脑先学什么)初学电脑应该先学什么&#xff0c;本文按照从内到外&#xff0c;从硬件到软件的顺序给各位朋友做个简单的介绍。更深层次的电脑知识&#xff0c;不是本人的专业范围&#xff0c;请咨询电脑专家。 从外表看&#xff0c;不论是台式的还是笔记本式的 …

初识无影云电脑

初闻不知词中意&#xff0c;再听已是无影人 前言一&#xff0c;什么是无影云&#xff1f;1.1 官方描述&#xff1a;1.2 个人理解&#xff1a; 二&#xff0c;无影云能做什么&#xff1f;2.1 工作2.2 生活 三&#xff0c;无影云怎么使用&#xff1f;3.1 Web端3.2 PC端3.3 移动端…

ubuntu软件:录制视频和截图工具,压缩视频

1. 自带录制视频工具&#xff1b; 使用方式&#xff1a; 无需下载 开始录屏/结束录屏&#xff1a;Ctrl Alt Shift r 当看到 Ubuntu 桌面的右上方多了一个红色的小圆点&#xff0c;代表正在录制 注意&#xff1a; 录屏默认的时长30秒&#xff0c;超时会自动结束&#xff01…

android 视频 宽高比,科普:什么是视频宽高比?

吴川 华南区技术负责人 概要 视频宽高比是指图像的宽度和高度之间的比率。视频质量是指在一定的宽高比视频中的像素密度数越高越清晰。如何转换视频的宽高比例及视频格式?本文一一为你讲解。 一、什么是视频宽高比? 宽高比即是视频显示的宽度与高度的比例。宽高比最初用于电影…

视频剪辑软件如何保存项目工程或快照?

我们都知道&#xff0c;Vegas作为一款视频剪辑软件&#xff0c;预览窗口也是比较小。当我们在进行一些细节的调整时&#xff0c;会显得十分麻烦&#xff0c;所以小编就以这个问题&#xff0c;来教一下大家如何解决吧&#xff01; 方法一&#xff1a; 有时预览窗口也会跟显示器的…

什么软件可以搜索计算机知识,生活必备电脑知识技巧大全

很多时候&#xff0c;在操作电脑时遇到一些操作特别繁琐的步骤或有些故障用某种方法操作不了&#xff0c;常常会使人非常抓狂&#xff0c;下面就让小编带你去看看生活必备电脑知识技巧大全&#xff0c;希望能帮助到大家! 禁止自动安装流氓软件 方法一、通过操作系统的applocker…

Verilog基础之十、计数器实现

目录 一、前言 二、工程设计 2.1 设计代码 2.2 综合结果 ​2.3 仿真结果 一、前言 计数器是较为基础的逻辑&#xff0c;很多其他逻辑可依靠计数器实现&#xff0c;如控制器&#xff0c;分频。原理为通过统计时钟脉冲的个数来输出计数值。 二、工程设计 2.1 设计代码 工…