千家信息网

Spring Cloud Netflix中Eureka的服务注册与发现有什么

发表于:2024-11-17 作者:千家信息网编辑
千家信息网最后更新 2024年11月17日,Spring Cloud Netflix中Eureka的服务注册与发现有什么,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获
千家信息网最后更新 2024年11月17日Spring Cloud Netflix中Eureka的服务注册与发现有什么

Spring Cloud Netflix中Eureka的服务注册与发现有什么,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

Spring cloud 简介

Spring Cloud为开发人员提供了快速构建分布式系统的工具(例如:配置管理,服务发现,断路器,智能路由,微代理,控制总线,一次性令牌,全局锁,领导选举,分布式会话,集群状态等等)。 开发人员可以用Spring Cloud快速搭建具有以上功能的应用程序。 它们可以在任何分布式环境中正常工作,包括开发人员自己的笔记本电脑,裸机数据中心以及Cloud Foundry等托管平台。

创建服务注册中心

我们创建一个工程来作为服务注册中心,下面详细说一下创建过程:

新建一个服务注册中心

在IDEA新建一个项目->选择spring initialir 如下图:

点击next->填写项目metadata信息:

点击next->选择Spring Cloud Discovery->右侧选择Eureka Server, 然后点击下一步知道项目创建成功:

创建完成后,pom.xml内用如下:

    4.0.0            org.springframework.boot        spring-boot-starter-parent        2.1.9.RELEASE                 com.noodles.mars    eureka-server    0.0.1-SNAPSHOT    eureka-server    Demo project for Spring Boot            11        Greenwich.SR3                            org.springframework.cloud            spring-cloud-starter-netflix-eureka-server                            org.springframework.boot            spring-boot-starter-test            test                                                    org.springframework.cloud                spring-cloud-dependencies                ${spring-cloud.version}                pom                import                                                                org.springframework.boot                spring-boot-maven-plugin                        
启用服务注册中心配置

依赖spring-cloud-starter-netflix-eureka-server包后,启用一个服务注册中心很简单,只要在启动类上注解@EnableEurekaServer就可以了:

@EnableEurekaServer@SpringBootApplicationpublic class EurekaServerApplication {    public static void main(String[] args) {        SpringApplication.run(EurekaServerApplication.class, args);    }}
服务注册中心项目配置

Eureka是一个高可用的组件,它是没有后端缓存组件的,每一个实例注册后需要向服务注册中心发送心跳,默认情况下,一个Eureka server同时也是一个client, 必须指定一个server。 服务注册中心的配置文件:

server:  port: 9090eureka:  instance:    hostname: localhost  client:    register-with-eureka: false    fetch-registry: false    service-url:      defaultZone: http://localhost:9090/eureka

启动注册中心,打开浏览器访问: http://localhost:9090, 会看到如下界面,此时注册列表是空的:

新建一个服务提供者

项目创建步骤和创建注册中心一样,只是在选择Spring Cloud Discovery时选择Eureka Discovery Client:

服务提供者项目pom.xml如下:

    4.0.0            org.springframework.boot        spring-boot-starter-parent        2.1.9.RELEASE                 com.noodles.mars    eureka-client    0.0.1-SNAPSHOT    eureka-client    Demo project for Spring Boot            11        Greenwich.SR3                            org.springframework.cloud            spring-cloud-starter-netflix-eureka-client                            org.springframework.boot            spring-boot-starter-web                            org.springframework.boot            spring-boot-starter-test            test                                                    org.springframework.cloud                spring-cloud-dependencies                ${spring-cloud.version}                pom                import                                                                org.springframework.boot                spring-boot-maven-plugin                        

开启注册服务提供也很简单,首先要在Spring boot启动类上注解@EnableEurekaClient,表明自己是Eureka Client:

@EnableEurekaClient@SpringBootApplicationpublic class EurekaClientApplication {    public static void main(String[] args) {        SpringApplication.run(EurekaClientApplication.class, args);    }}

然后配置服务注册中心信息:

server:  port: 8040eureka:  client:    service-url:      defaultZone: http://localhost:9090/eureka/spring:  application:    name: hello-erueka-client

注意:这里需要指明spring.application.name, 应用名称将在随后的服务间调用中用到。

在这里提供一个接口,随后测试调用:

@RestControllerpublic class HelloController {    @Value("${server.port}")    int port;    @GetMapping("/hello")    public String hello(@RequestParam("name") String name) {        return String.format("Hello, My name is %s, I'm from port: %d", name, port);    }}

启动项目,打开浏览器输入http://localhost:9090, 打开注册中心的网址:

打开网页后你会发现你的服务提供者已经注册在服务注册中心了。

使用Postman或直接在浏览器中访问服务提供者的接口,你会看到回应:

Hello, My name is Mars, I'm from port: 8040

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注行业资讯频道,感谢您对的支持。

0