千家信息网

SpringCloud中eureka组件如何使用

发表于:2025-01-31 作者:千家信息网编辑
千家信息网最后更新 2025年01月31日,SpringCloud中eureka组件如何使用,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。Eureka 是 Netflix 开发的,
千家信息网最后更新 2025年01月31日SpringCloud中eureka组件如何使用

SpringCloud中eureka组件如何使用,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

Eureka 是 Netflix 开发的,一个基于 REST 服务的,服务注册与发现的组件

它主要包括两个组件:Eureka Server 和 Eureka Client

  • Eureka Client:一个Java客户端,用于简化与 Eureka Server 的交互(通常就是微服务中的客户端和服务端)

  • Eureka Server:提供服务注册和发现的能力(通常就是微服务中的注册中心)

工作结构图:

各个微服务启动时,会通过 Eureka Client 向 Eureka Server 注册自己,Eureka Server 会存储该服务的信息

也就是说,每个微服务的客户端和服务端,都会注册到 Eureka Server,这就衍生出了微服务相互识别的话题

  • 同步:每个 Eureka Server 同时也是 Eureka Client(逻辑上的)
       多个 Eureka Server 之间通过复制的方式完成服务注册表的同步,形成 Eureka 的高可用

  • 识别:Eureka Client 会缓存 Eureka Server 中的信息
       即使所有 Eureka Server 节点都宕掉,服务消费者仍可使用缓存中的信息找到服务提供者(笔者已亲测)

  • 续约:微服务会周期性(默认30s)地向 Eureka Server 发送心跳以Renew(续约)信息(类似于heartbeat)

  • 续期:Eureka Server 会定期(默认60s)执行一次失效服务检测功能
       它会检查超过一定时间(默认90s)没有Renew的微服务,发现则会注销该微服务节点

Spring Cloud 已经把 Eureka 集成在其子项目 Spring Cloud Netflix 里面

Eureka Server在springCloud集成

1.pom文件配置



org.springframework.cloud
spring-cloud-starter-eureka-server


org.springframework.boot
spring-boot-starter-security

2 yml配置文件

security:  basic:    enabled: true  user:    name: user    password: password123server:  port: 8761eureka:  client:    register-with-eureka: false    fetch-registry: false    service-url:      defaultZone: http://user:password123@localhost:8761/eureka

3.启动类

package com.itmuch.cloud;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;@SpringBootApplication@EnableEurekaServerpublic class EurekaApplication {  public static void main(String[] args) {    SpringApplication.run(EurekaApplication.class, args);  }}

SpringCloud 集成Eureka client

1.pom文件

        4.0.0        microservice-provider-user        jar        microservice-provider-user        Demo project for Spring Boot                        com.itmuch.cloud                microservice-spring-cloud                0.0.1-SNAPSHOT                                UTF-8                UTF-8                1.8                                                        org.springframework.boot                        spring-boot-starter-data-jpa                                                        org.springframework.boot                        spring-boot-starter-web                                                        com.h3database                        h3                        runtime                                                        org.springframework.cloud                        spring-cloud-starter-eureka                                                        org.springframework.boot                        spring-boot-starter-actuator                        


org.springframework.cloud
spring-cloud-starter-eureka


org.springframework.boot
spring-boot-starter-actuator

2.yml配置文件

server:  port: 7900spring:  jpa:    generate-ddl: false    show-sql: true    hibernate:      ddl-auto: none  datasource:    platform: h3    schema: classpath:schema.sql    data: classpath:data.sql  application:    name: microservice-provider-userlogging:  level:    root: INFO    org.hibernate: INFO    org.hibernate.type.descriptor.sql.BasicBinder: TRACE    org.hibernate.type.descriptor.sql.BasicExtractor: TRACE    com.itmuch: DEBUGeureka:  client:    healthcheck:      enabled: true    serviceUrl:      defaultZone: http://user:password123@localhost:8761/eureka  instance:    prefer-ip-address: true    instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}}    metadata-map:      zone: ABC      # eureka可以理解的元数据      lilizhou: BBC  # 不会影响客户端行为    lease-renewal-interval-in-seconds: 5

3.启动客户端类

package com.itmuch.cloud;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.netflix.eureka.EnableEurekaClient;@SpringBootApplication@EnableEurekaClientpublic class MicroserviceSimpleProviderUserApplication {  public static void main(String[] args) {    SpringApplication.run(MicroserviceSimpleProviderUserApplication.class, args);  }}

看完上述内容,你们掌握SpringCloud中eureka组件如何使用的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注行业资讯频道,感谢各位的阅读!

0