Java开发 - 带你了解集群间的相互调用,你还在等什么?

news/2024/11/17 0:26:41/

目录

前言

导读

项目准备

集群准备

父工程引入子项目

服务调用方HelloService准备

pom文件

yml文件

Controller文件

服务提供方HelloWorld准备 

pom文件

yml文件

Controller文件 

运行此两个工程 

hello_world组集群

集群调用测试

RestTemplate换成Dubbo行不行,怎么换

两个pom文件引入依赖

 两个启动文件添加新注解

结构调整

helloWorld调整

helloService调整

​编辑

重新运行

权重 

结语


前言

前文中,对Redis的集群做了详细的讲解,能一路读到这里的相信你们对集群的概念已经基本了解,今天博主要带给大家的是集群之间的相互调用,同时还带负载均衡,这也是目前比较流行的集群使用方法,可以有效避免故障时对整个系统造成影响。既然有集群,那一定少不了RPC的使用,没错,这里会简单涉及,后续会单独讲解更详细的使用,下面,就让我们一起来学习这篇集群之间的相互调用吧。

导读

本篇的重点不在于讲RPC,而是单纯的一种集群调用思想和调用结构!!!

在开始学习前,不知道你对Nacos了解多少?本文主要依靠的便是Nacos注册中心,如果不还不太了解,下面这篇博客将带你初步了解:

Java开发 - 配置中心初体验

项目准备

在开始讲解之前,我们需要先准备一个基础项目其结构大概如下:

你不必像创建过多子项目,圈起来的俩红色的是博主创建的,service是业务调用方,helloworld是业务提供方,好吧,world还写错了,请不要嘲笑博主,手滑,真的是手滑。

关于微服务项目基本结构不知道大家了解多少,如果你对微服务项目里父子项目的基本结构不了解的话,那么建议你先去了解下面下,博主给大家准备好了,点下面链接:

Java开发 - 数风流人物,还看“微服务”

赶紧去看,趁博主还没收费哦~

不选择在这里给大家讲解是因为篇幅过长,不利于大家学习,学习应该是一个循序渐进的过程,而不是一蹴而就。

下面就是一个集群的异地容灾结构图,大家看看:

集群准备

上面主要是让大家熟悉微服务父子项目的配置,这里也会涉及点,但基本上是一笔带过,若果你了解父子项目结构,那么请继续。

父工程引入子项目

详细的结构大家还是要通过上面那篇去学习,这里不再赘述。

服务调用方HelloService准备

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 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>com.codingfire</groupId><artifactId>cloud</artifactId><version>0.0.1-SNAPSHOT</version></parent><groupId>com.codingfire</groupId><artifactId>HelloService</artifactId><version>0.0.1-SNAPSHOT</version><name>HelloService</name><description>Demo project for Spring Boot</description><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency><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>com.codingfire</groupId><artifactId>Cloud-helloword</artifactId><version>0.0.1-SNAPSHOT</version></dependency></dependencies>
</project>

yml文件

spring:application:# 当前Springboot项目的名称,用于注册中心服务的名称name: hello_servicecloud:nacos:discovery:server-addr: localhost:8848cluster-name: HZ # 集群名称hello_world:ribbon:NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRule

其中,hello_world是我们要调用的业务的名字,在对方的pom文件中。下面有负载均衡策略,是随机的。

Controller文件

我们简单搞个Controller,用来调用hello_world服务:

package com.codingfire.helloservice.controller;import com.codingfire.cloud.helloword.controller.HHelloController;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;@RestController
@RequestMapping("/hello")
public class SHelloController {@Autowiredprivate RestTemplate restTemplate;@GetMapping("/service")public String hello(){//hello_world也可以用ip:port替代,但你要集群调用,就不能写死,要写对方的集群的服务名String helloWorld = "http://hello_world/hello/world";return "XiaoMing says:" + helloWorld;}}

此处我们先用最简单的RestTemplate来进行RPC,此处肯定报错,还需要在启动类中添加此方法:

package com.codingfire.helloservice.config;import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;@Configuration
public class RestTemplateConfig {@Bean@LoadBalancedpublic RestTemplate restTemplate(){return new RestTemplate();}
}

到此,服务调用方的准备就已经就绪。

服务提供方HelloWorld准备 

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 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>com.codingfire</groupId><artifactId>cloud</artifactId><version>0.0.1-SNAPSHOT</version></parent><groupId>com.codingfire</groupId><artifactId>Cloud-helloword</artifactId><version>0.0.1-SNAPSHOT</version><name>Cloud-helloword</name><description>Demo project for Spring Boot</description><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency><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>

yml文件

spring:application:# 当前Springboot项目的名称,用于注册中心服务的名称name: hello_worldcloud:nacos:discovery:server-addr: localhost:8848cluster-name: SH # 集群名称

Controller文件 

package com.codingfire.cloud.helloword.controller;import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
@RequestMapping("/hello")
public class HHelloController {@GetMapping("/world")public String hello(){return "Hello World!";}}

到此,服务提供方准备就绪。

运行此两个工程 

在此之前,请大家确保Nacos已经启动,否则无法运行项目!!!

由于本地运行项目时,没有指定端口,所以tomcat端口8080会冲突,我们给hello_world指定版本号8081:

接下来分别运行这两个项目,并在Nacos后台查看:

此时看到两个服务都已经成功注册进来,但我们要做的是调用集群服务,所以还需要给hello_world增加一个服务,组成集群。

hello_world组集群

请大家点击此处:

在下图中复制多个启动文件出来:

并分别指定端口为8082,8083,8084。

下面我们先运行8082:

在运行8083和8084之前,我们需要把yml文件中的集群名HZ,改为SH,已经运行的项目不要暂停,本地模拟需要,生产环境多台服务器的时候不需要这样。

接着分别运行8083和8084的启动文件,然后去Nacos后台刷新查看:

此时hello_world的集群有两个,实例有四个,符合我们的预期,我们点击“详情”按钮查看:

完美。

集群调用测试

下面我们调用接口:http://localhost:8080/hello/service

它会去调用hello_world里面的接口,最终会显示出来一段话,额,你们有没有报500错误?控制台提示下面这段话:

Request URI does not contain a valid hostname: http://hello_world/hello/world 

如果有的话,恭喜你中奖了,这里要插入一个小小的知识点,spring.application.name中不能带下划线,博主的命名是不是都带了下划线?这是一个非常小的错误,但也是一个非常容易被忽略的错误,问题是你压根不知道发生了什么,所以,大家现在回过头,去yml文件里,把名字改了,改成:helloWorld和helloService,Controller里面的RestTemplate调用处也需要改,改完之后,重新按照博主上面的步骤运行。一个HZ集群,一个SH集群,不要漏一个。

下面就是见证奇迹的时刻,让我们访问:http://localhost:8080/hello/service

输出这段话,就表示你的应用运行成功了。下面我们清空四个控制台:

刷新url并查看控制台:

你会发现在这四个控制台的输出像是轮询,一个一个,我们注意到,helloServcie的集群是HZ,我们希望它能够优先访问本集群内的服务,而不是访问其他集群的服务。

但默认的ZoneAvoidanceRule不能实现根据同集群优先来实现负载均衡,所以Nacos中提供了一个NacosRule的实现,可以优先从同集群中挑选实例。下面修改负载均衡的策略:

helloWorld:ribbon:
#    NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRuleNFLoadBalancerRuleClassName: com.alibaba.cloud.nacos.ribbon.NacosRule # 负载均衡规则

使用新的,原来的注释起来,再次运行helloService,重新调用上面的接口,就会优先访问本集群的服务了。

为了测试集群挂掉后是否能访问其他的集群,你需要把HZ集群的两个实例下线掉:

然后继续访问上面的接口,只要能成功访问,就代表我们的集群策略是没问题的。 

RestTemplate换成Dubbo行不行,怎么换

RestTemplate是一种比较老的用法,我们现在做RPC会更多的用Dubbo,那么Dubbo该怎么使用呢?现在,我们把RestTemplate替换成Dubbo来看看,能不能和上面的集群调用有一样的表现。

两个pom文件引入依赖

        <dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-dubbo</artifactId></dependency>

两个yml文件引入配置:

dubbo:protocol:port: -1 # 设置Dubbo服务调用的端口 设置-1能够实现动态自动设置合适端口,生成规则是从20880开始递增name: dubbo # 设置端口名称,一般固定就叫dubboregistry:address: nacos://localhost:8848 # 配置当前Dubbo注册中心的类型和地址consumer:check: false # 设置为false表示当前项目启动时,不检查要调用的远程服务是否可用,避免报错

 两个启动文件添加新注解

// 如果当前项目是Dubbo服务的生产者,必须添加这个注解
@EnableDubbo

生产者就是服务提供方,消费方不需要,为了防止大家搞错,所以就两个启动类都添加,实际使用中要区分。但也存在即是服务提供方,又是服务消费方的情况。

结构调整

为了能更贴近于真实使用场景,也是为了不在Controller中直接使用Dubbo(可能会带来一些问题),所以我们对项目结构做一些简单的调整,增加service层,包括接口和实现类 。

helloWorld调整

IHelloWorldService类:
package com.codingfire.cloud.helloword.service;public interface IHelloWorldService {String helloWorld();
}
HelloWorldServiceImpl类:
package com.codingfire.cloud.helloword.service.impl;
import com.codingfire.cloud.helloword.service.IHelloWorldService;
import org.springframework.stereotype.Service;@Service
public class HelloWorldServiceImpl implements IHelloWorldService {@Overridepublic String helloWorld() {return "Hello World!";}
}
HHelloController类:
package com.codingfire.cloud.helloword.controller;import com.codingfire.cloud.helloword.service.IHelloWorldService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
@RequestMapping("/hello")
public class HHelloController {@Autowiredprivate IHelloWorldService helloWorldService;@GetMapping("/world")public String hello(){return helloWorldService.helloWorld();}}

helloService调整

IHelloService类:
package com.codingfire.helloservice.service;public interface IHelloService {String getHelloWorld();
}
HelloServiceImpl类:
package com.codingfire.helloservice.service.impl;import com.codingfire.cloud.helloword.service.IHelloWorldService;
import com.codingfire.helloservice.service.IHelloService;
import org.apache.dubbo.config.annotation.DubboReference;
import org.apache.dubbo.config.annotation.DubboService;
import org.springframework.stereotype.Service;@DubboService
@Service
public class HelloServiceImpl implements IHelloService {@DubboReferenceprivate IHelloWorldService dubboHelloService;@Overridepublic String getHelloWorld() {String helloWorld = dubboHelloService.helloWorld();return helloWorld;}
}
SHelloController类:
package com.codingfire.helloservice.controller;
import com.codingfire.helloservice.service.IHelloService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
@RequestMapping("/hello")
public class SHelloController {@Autowiredprivate IHelloService helloService;@GetMapping("/service")public String hello(){String helloWorld = helloService.getHelloWorld();return "XiaoMing Says:" + helloWorld;}}

重新运行

俩集群,不要忘了啊,手动修改,和上面一样的方式。

运行成功后查看Nacos中状态:

原来的俩服务还在,但是多了其他的,他们分别是我们注册的dubbo服务,有提供者provider,也有消费者consumer,我们下面点进去看看helloWorld集群启动成功没有:

元数据这一列多了好多数据啊,我们看到是dubbo相关的,集群也都正常,图太长,就不一一截了,下面去访问接口:http://localhost:8080/hello/service 

能得到数据,就说明我们的配置没问题,Dubbo引入就是成功的:

查看控制台:

org.apache.dubbo.rpc.RpcException: No provider available from registry localhost:8848 for service com.codingfire.cloud.helloword.service.IHelloWorldService on consumer 192.168.0.102 use dubbo version 2.7.8, please check status of providers(disabled, not registered or in blacklist).

说是com.codingfire.cloud.helloword.service.IHelloWorldService这个类没有注册到白名单?我们看下这个类,这是个接口,所以还是要看其实现类HelloWorldServiceImpl,果然,这个类没有添加Dubbo注解,在类上添加注解:

@DubboService

 下面重新运行helloWorld的四个启动类,记得集群哦,这时候,博主仿佛听到有人在吐槽:博主,你不玩我们会死啊?能不能一步到位?

哈哈哈哈~不好意思,这是为了让大家更好的理解细节处,大家还是先运行项目吧。

a few moments later~

好了,大家都运行成功了吧,下面,重新访问接口:http://localhost:8080/hello/service

漂亮!!!

但是关于Dubbo单独设置负载均衡策略和同集群优先这些就不在这里介绍了,博主还在进行研究,后续会发详细介绍。

权重 

关于集群访问,还可设置权重:

各集群权重可自行根据需要设置。 

结语

到此,这篇关于集群间相互调用的博客就写好了,唯一觉得有些遗憾的是关于Dubbo的详细使用没有给大家讲清楚,后续单独出一篇来进行讲解,请大家稍微期待一下,其实很多人开发中未必用到异地容灾的场景,这篇博客算是给大家一个入门的门票,算不上特别精,但一定对你会有些帮助。未来,会分享更多的集群相关的博客,让我们一起学习,早日成为架构师。


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

相关文章

c语言写木马

c语言写木马(windows) /SVCHOST.C / / SVCHOST.EXE / / SVCHOST.COM / #include<stdio.h> /标准输入输出/ #include<string.h> /字符串操作/ #include<stdlib.h> /其它函数/ #include<process.h> /进程控制/ #include<dir.h> /目录函数/ #defin…

特洛伊木马与计算机病毒有什么区别,特洛伊木马Vs病毒Vs蠕虫, 有什么区别?...

如果出现计算机病毒的话题,人们最常犯的错误就是将蠕虫或特洛伊木马称为病毒。尽管木马,蠕虫和病毒这两个术语经常互换使用,但它们并不相似。病毒,蠕虫和特洛伊木马都是可以破坏您的计算机的恶意程序,但是这三者之间存在差异,知道这些差异可以帮助您更好地保护计算机免受…

木马技术补充:木马加壳

说了好几次,要发个加壳的教程,一直都太懒,只好把别人写的简单整理一下,大家莫怪哦。 =====================================

msf之木马程序

目录 捆绑木马生成木马文件附&#xff1a;msfvenom介绍msfvenom简介msfvenom生成exploit/multi/handler模块简介 设置监听反弹发送木马查看对方的ip查看对方目录截图开启摄像头附&#xff1a;Meterpreter常用命令 进一步获取权限伪装 捆绑木马 这里使用的是Kali linux虚拟机 攻…

什么是蠕虫,木马以及二者跟病毒是什么关系!

参考&#xff1a; 蠕虫与木马之间有什么区别 什么是计算机病毒 我认为&#xff0c;病毒就是形容那些影响正常机体的效能的东西的&#xff01; “计算机病毒&#xff08;Computer Virus&#xff09; 是编制者在计算机程序中插入的破坏计算机功能或者数据的代码&#xff0c;能…

木马 --- 基本概念和分类

木马全称为特洛伊木马&#xff0c;来源于古希腊神话。木马是通过欺骗或诱骗的方式安装&#xff0c;并在用户的计算机中隐藏以实现控制用户计算机的目的。 具有远程控制、信息窃取、破坏等功能的恶意代码 木马具有如下特点&#xff1a; 欺骗性 木马都有很强的欺骗性&#xff0…

病毒,木马,蠕虫的区别

病毒、木马和蠕虫都是计算机病毒&#xff0c;但它们的传播方式、特点和危害程度都有所不同。 病毒&#xff1a;病毒是一种将自己复制到其他计算机程序或文件中的恶意软件。病毒通常依赖于用户行为来传播&#xff0c;比如通过电子邮件、移动存储设备等方式。病毒的具体危害程度…

php 木马,PHP后门木马详解

说起php后门木马我就心有愉季啊前不久一个站就因不小心给人注入了然后写入了小木马这样结果大家知道的我就不说了下面我来给大家收集了各种php后门木马做法大家可参考。 php后门木马对大家来说一点都不陌生吧但是它的种类您又知多少呢 本文为您浅析说明一些php后门木马常用的函…