基础知识
服务治理
管理服务于服务之间依赖关系,可以实现服务调用、负载均衡、容错等,实现服务发现与注册。
服务注册与发现
服务注册:将服务信息注册到注册中心
服务发现:从注册中心上获取服务信息
服务和注册中心中会有心跳连接,这样运维人员可通过配置的服务注册信息来查看服务的运行情况。
eureka的两个组件
euraka server、eureka client
单机版实现
建module
payment-server7001
改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">
<parent>
<artifactId>cloud2022</artifactId>
<groupId>cn.sp.springcloud</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>eureka-server7001</artifactId>
<dependencies>
<!-- eureka-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<!-- 公共模块 -->
<dependency>
<groupId>cn.sp.springcloud</groupId>
<artifactId>commons-api</artifactId>
<version>${project.version}</version>
</dependency>
<!-- boot web actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- 一般通用配置 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>cn.sp.springcloud</groupId>
<artifactId>eureka-server7001</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cn.sp.springcloud</groupId>
<artifactId>eureka-server7001</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cn.sp.springcloud</groupId>
<artifactId>eureka-server7001</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cn.sp.springcloud</groupId>
<artifactId>eureka-server7001</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
老版本
以前的老版本(当前使用2018)
dependency> groupId>org.springframework.cloudgroupId> artifactId>spring-cloud-starter-eurekaartifactId> dependency>
新版本
现在新版本(当前使用2020.2)
dependency> groupId>org.springframework.cloudgroupId> artifactId>spring-cloud-starter-netflix-eureka-serverartifactId> dependency>
写yml
server:
port: 7001
eureka:
instance:
#hostname: localhost #eureka服务端的实例名称
#集群版
hostname: eureka.7001.com #eureka服务端的实例名称
client:
register-with-eureka: false #false表示不向注册中心注册自己。
fetch-registry: false #false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
service-url:
#设置与eureka server 交互的地址
# defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
#集群,相互注册,相互守望
defaultZone: http://eureka.7002.com:7002/eureka/
主启动类
@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaApplication.class,args);
}
}
修改provider-payment8001
改pom
以前老版本,别再使用
dependency> groupId>org.springframework.cloudgroupId> artifactId>spring-cloud-starter-eurekaartifactId> dependency>
现在新版本,当前使用
dependency> groupId>org.springframework.cloudgroupId> artifactId>spring-cloud-starter-netflix-eureka-clientartifactId> dependency>
改yml
server:
port: 8001
spring:
application:
name: payment-service
# datasource:
# type: com.alibaba.druid.pool.DruidDataSource # 当前数据源操作类型
# driver-class-name: org.gjt.mm.mysql.Driver # mysql驱动包
# url: jdbc:mysql://172.19.3.235:3306/cloud_test?useUnicode=true&characterEncoding=utf-8&useSSL=false
# username: root
# password: Ankki_mySQL123
eureka:
client:
#表示是否将自己注册进eureka server默认为true
register-with-eureka: true
#是否从eureka server 抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
fetch-registry: true
service-url:
#单机版
#defaultZone: http://localhost:7001/eureka
#集群版
defaultZone: http://eureka.7001.com:7001/eureka,http://eureka.7002.com:7002/eureka
改主启动
@SpringBootApplication
@EnableEurekaClient
public class PaymentApplication {
public static void main(String[] args) {
SpringApplication.run(PaymentApplication.class,args);
}
}
测试
http://localhost:7001
修改order service
1、同上改pom
2、改yml
3、改主启动
测试
http://localhost/consumer/payment/get/31
集群配置
集群原理
1、构建eureka server
2、将payment service 和order service注册进入eureka server,将自身的服务信息如地址以别名的形式注册进server中
3、当order service 调用payment service时,会先从eureka
server中通过别名获取地址
4、通过httpclient技术远程调用
5、消费者获取服务信息后缓存到jvm内存中,默认每隔30秒更新一次
新建eureka server
参照7001
修改window配置
修改hosts文件
此处暂不考虑linux
127.0.0.1 eureka7001.com
127.0.0.1 eureka7002.com
改yml
eureka: instance: hostname: eureka7001.com
服务注册
将订单和支付微服务注册进eureka
defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka # 集群版
测试
http://localhost/consumer/payment/get/31
payment service集群构建
复制provider-payment8001建立8001module
修改order service
private static final String PAYMENT_URL = "http://payment-service/";
负载均衡配置
使用@LoadBalanced注解赋予RestTemplate负载均衡的能力
测试
http://localhost/consumer/payment/get/31
问题
1、复制module时出现source root问题
解决:https://blog.csdn.net/wwwwwww31311/article/details/112919957
经过测试,并没有通过上面的解决办法解决这个问题,可能是因为复制项目的原因,导致加载的总是另外一个项目的文件配置
于是重新建立项目,不再复制目录,解决问题。
关于自我保护模式
自我保护模式是指,当某个服务不可用,或者暂时不可用时,eureka server不会立即将其服务注册的信息删除,而会保留。
但经过本人测试发现,当我将一个服务停止后,服务注册信息确实删除了,此处暂不清楚是何原因。
停止前
停止后
因此,自我保护模式自动被禁止了
当然,如果没有清楚服务。可以通过配置来清楚。
另外,ip地址显示也是默认有的
server 端配置
eureka.server.enable-self-preservation=true
client 端配置
instance:
instance-id: payment8001
#访问路径可以显示IP地址
prefer-ip-address: true
#Eureka客户端向服务端发送心跳的时间间隔,单位为秒(默认是30秒)
#lease-renewal-interval-in-seconds: 1
#Eureka服务端在收到最后一次心跳后等待时间上限,单位为秒(默认是90秒),超时将剔除服务
#lease-expiration-duration-in-seconds: 2
通过配置,可以使自我保护模式禁止。