mysql也能注册到eureka_SpringCloud Eureka实现服务注册与发现

本文介绍如何将MySQL服务注册到Eureka服务发现中心。首先创建Eureka Server,配置并启动后,再将一个SpringBoot应用(Eureka Client)配置注册中心地址并启用Eureka客户端。即使服务停止,Eureka仍可能显示服务为UP,通过启用健康检查并调整续约设置,可以确保注册中心准确反映服务状态。
摘要由CSDN通过智能技术生成

前言

Eureka是一种基于REST(具像状态传输)的服务,主要用于AWS云中定位服务,以实现中间层服务器的负载平衡和故障转移。本文记录一个简单的服务注册与发现实例。

Eureka-Server

服务注册中心

新建一个Maven项目,并删除src文件夹,保留pom.xml,作为parent,当然也可以不用

dcb77c029bcf8c314d08a8f0645d1126.png

在parent里面新建一个springboot项目的Module,Eureka Server

76af197f66ce24d7a8517352039e13b5.png

项目结构

463cdcf4f5058efe0926448b3ff6ac5a.png

maven引入jar

parent的 pom.xml

是为了统一版本

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">

4.0.0

cn.huanzi.qch

parent

1.0.0

pom

org.springframework.boot

spring-boot-starter-parent

2.1.1.RELEASE

UTF-8

1.8

UTF-8

UTF-8

UTF-8

5.1.34

5.22

1.4.7.RELEASE

3.4.3.1

3.1.12

2.0.3

2.3.2

2.2.1

2.4

2.1.1

2.3.2

Greenwich.RC1

org.springframework.cloud

spring-cloud-dependencies

${spring-cloud.version}

pom

import

spring-milestones

Spring Milestones

https://repo.spring.io/milestone

eureka-server的 pom.xml

继承parent

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

cn.huanzi.qch.eureka

eureka-server

0.0.1-SNAPSHOT

eureka-server

eureka 注册中心

cn.huanzi.qch

parent

1.0.0

org.springframework.cloud

spring-cloud-starter-netflix-eureka-server

org.springframework.boot

spring-boot-starter-test

test

org.springframework.boot

spring-boot-maven-plugin

配置文件

server.port=1111

eureka.client.register-with-eureka=false

eureka.client.fetch-registry=false

eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/

启动类

@EnableEurekaServer

@SpringBootApplication

public class EurekaServerApplication {

public static void main(String[] args) {

SpringApplication.run(EurekaServerApplication.class, args);

}

}

启动应用,访问 http://localhost:1111/,注册中心启动成功,此时有0个服务

453f0b539be195b7e16a750b252123fb.png

Eureka-Client

服务发现,可以新建一个springboot项目,我们直接使用之前写的一个myspringboot项目

maven中引入相关jar

org.springframework.cloud

spring-cloud-starter-netflix-eureka-client

如果没有repositories还需要加入

org.springframework.cloud

spring-cloud-dependencies

${spring-cloud.version}

pom

import

spring-milestones

Spring Milestones

https://repo.spring.io/milestone

配置文件加入注册中心的地址,也就是Eureka-Server的配置文件里面eureka.client.serviceUrl.defaultZone

#eureka

eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/

启动类添加注解

@EnableEurekaClient

@SpringBootApplication

@RestController

public class MyspringbootApplication{

public static void main(String[] args) {

SpringApplication.run(MyspringbootApplication.class, args);

}

/**

* 访问首页

*/

@GetMapping("/index")

public String index(){

return "hello springboot!";

}

}

启动客户端服务

f7fd1b90e91ae091872272940101954f.png

成功在注册中心注册成功,可以对外提供服务

77bf2091e50e69540bb5bb7fc4102937.png

健康检查

默认情况下,Eureka使用客户端心跳来确定客户端是否启动。除非另有说明,否则发现客户机不会根据Spring引导执行器传播应用程序的当前健康检查状态。因此,在成功注册后,Eureka总是宣布应用程序处于“UP”状态。可以通过启用Eureka健康检查来更改此行为,比如我现在将myspringboot服务停掉,但注册中心依旧显示为UP,这样就会造成我服务已经挂掉了,但注册中心依然会认为这个实例还活着。

Eureka-Client

#健康检查(需要spring-boot-starter-actuator依赖)

eureka.client.healthcheck.enabled=true

# 续约更新时间间隔(单位秒,默认30秒)

eureka.instance.lease-renewal-interval-in-seconds=10

# 续约到期时间(单位秒,默认90秒)

eureka.instance.lease-expiration-duration-in-seconds=10

org.springframework.boot

spring-boot-starter-actuator

Eureka-Server

#设为false,关闭自我保护

eureka.server.enable-self-preservation=false

#清理间隔(单位毫秒,默认是60*1000)

eureka.server.eviction-interval-timer-in-ms=10000

b3623662c4f1c4d01ecf1b33a2230b7e.png

健康检查,注册中心将死去的服务剔除

294a0d89df933ab5468be5f608c70c86.png

总结

Eureka-Server

1、引入的是spring-cloud-starter-netflix-eureka-server,使用的是@EnableEurekaServer

Eureka-Client

1、引入的是spring-cloud-starter-netflix-eureka-client,使用的是@EnableEurekaClient

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值