一个服务通常的启动步骤
- 导入依赖
- 编写配置文件
- 启动服务
Eureka服务端构建
1. 导入依赖
- spring-cloud-starter-eureka-server已经停止更新,如果出现版本不适配,可以尝试用spring-cloud-starter-netflix-eureka-server的依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
<version>2.2.5.RELEASE</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.springframework.cloud</groupId>-->
<!-- <artifactId>spring-cloud-starter-eureka-server</artifactId>-->
<!-- <version>1.4.7.RELEASE</version>-->
<!-- </dependency>-->
- tips
如果启动失败,可以尝试在父工程里把 spring-boot-dependencies 的版本改为带有 RELEASE 标识的版本
2. 编写配置文件
- 查看源码,修改默认的访问地址
server:
port: 7001
eureka:
instance:
hostname: localhost #eureka服务端的实例名称
client:
fetch-registry: false # false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
register-with-eureka: false # 是否将自己注册到Eureka服务器中,本身是服务器,无需注册
service-url:
defaultZone: http://${
eureka.instance.hostname}:${
server.port}/eureka/
# 设置与Eureka Server交互的地址查询服务和注册服务都需要依赖这个defaultZone地址
3. 启动服务
- @EnableEurekaServer
@SpringBootApplication
@EnableEurekaServer
public class Eureka_7001 {
public static void main(String[] args) {
SpringApplication.run(Eureka_7001.class,args);
}
}
将服务(客户)添加到Eureka服务中心
1. 导入Eureka服务的依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
<version>1.4.7.RELEASE</version>
</dependency>
2. 添加Eureka配置
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka/
# 将服务注册到 Eureka 服务中心 7001
3. 启动Eureka Client
- @EnableEurekaClient
@SpringBootApplication
@EnableEurekaClient
public class DeptProvider_8001 {
public static void main(String[] args) {
SpringApplication.run(DeptProvider_8001.class,args);
}
}
- 成功将服务注册到服务中心
tips:
- instance-id 改变注册的主机名称
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka/ # 将服务注册到 Eureka 服务中心 7001
instance:
instance-id: springcloud-8001
- 如果不先停止注册中心重新按顺序启动服务,直接修改主机名称,就会出现这种情况,这是eureka的一种自我保护机制
- 自我保护机制:好死不如赖活着
- 一句话总结:某时刻某一个微服务不可以用了,eureka不会立刻清理,依旧会对该微服务的信息进行保存!默认情况下,如果EurekaServer在一定时间内没有接收到某个微服务实例的心跳,EurekaServer将会注销该实例(默认90秒)。但是当网络分区故障发生时,微服务与Eureka之间无法正常通行,以上行为可能变得非常危险了–因为微服务本身其实是健康的,此时本不应该注销这个服务。Eureka通过 自我保护机制 来解决这个问题–当EurekaServer节点在短时间内丢失过多客户端时(可能发生了网络分区故障),那么这个节点就会进入自我保护模式。一旦进入该模式,EurekaServer就会保护服务注册表中的信息,不再删除服务注册表中的数据(也就是不会注销任何微服务)。当网络故障恢复后,该EurekaServer节点会自动退出自我保护模式。
- 在自我保护模式中,EurekaServer会保护服务注册表中的信息,不再注销任何服务实例。当它收到的心跳数重新恢复到阈值以上时,该EurekaServer节点就会自动退出自我保护模式。它的设计哲学就是宁可保留错误的服务注册信息,也不盲目注销任何可能健康的服务实例。一句话:好死不如赖活着。
- 综上,自我保护模式是一种应对网络异常的安全保护措施。它的架构哲学是宁可同时保留所有微服务(健康的微服务和不健康的微服务都会保留),也不盲目注销任何健康的微服务。使用自我保护模式,可以让Eureka集群更加的健壮和稳定。
- 在SpringCloud中,可以使用 eureka.server.enable-self-preservation = false 禁用自我保护
模式 【不推荐关闭自我保护机制】
- 增加访问提示IP信息的功能 prefer-ip-address: true
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka/ # 将服务注册到 Eureka 服务中心 7001
instance:
instance-id: springcloud-8001
prefer-ip-address: true # true访问路径可以显示IP地址
- 获得该服务的信息【对外暴露服务】
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
info:
app.name: qk-springcloud
company.name: www.qk.com
- info 里除了app.name和company.name,还有其他的信息也可以配置,比如:build.artifactId 和 build.version
- 服务发现 DiscoveryClient
- 获得注册的服务的详细信息
@Autowired
private DiscoveryClient client;
@GetMapping("/discovery")
public Object discovery(){
//获得微服务列表清单
List<String> list = client.getServices();
System.out.println("client.getServices()==>"+list);
//得到一个具体的微服务!
List<ServiceInstance> serviceInstanceList =
client.getInstances("SPRINGCLOUD-PROVIDER-DEPT");
for (ServiceInstance serviceInstance : serviceInstanceList) {
System.out.println(
serviceInstance.getServiceId()+"\t"+
serviceInstance.getHost()+"\t"+
serviceInstance.getPort()+"\t"+
serviceInstance.getUri()
);
}
return this.client;
}