`
夏夜弥光
  • 浏览: 5893 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

springboot使用eureka服务发现

 
阅读更多

eureka服务发现云端负载均衡,一个基于 REST 的服务,用于定位服务,以实现云端的负载均衡和中间层服务器的故障转移,eureka服务发现分为服务端eureka server 和客户端eureka client,服务端实现服务注册中心,客户端进行服务注册。

服务端eureka server

创建一个springboot项目作为eureka注册中心,可以搭建多个eureka server作为集群使用

1、引入依赖
<parent>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-parent</artifactId>
             <version>1.5.2.RELEASE</version>
       </parent>
       <properties>
             <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
              <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
             <java.version>1.8</java.version>
             <spring-cloud.version>Edgware.SR1</spring-cloud.version>
       </properties>
       <dependencies>
              <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
             <dependency>
                    <groupId>org.springframework.cloud</groupId>
                    <artifactId>spring-cloud-starter-eureka-server</artifactId>
             </dependency>
              <!-- 添加 tomcat 的支持 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>
       </dependencies>
        <dependencyManagement>
             <dependencies>
                    <dependency>
                           <groupId>org.springframework.cloud</groupId>
                           <artifactId>spring-cloud-dependencies</artifactId>
                           <version>Dalston.SR1</version>
                           <type>pom</type>
                           <scope>import</scope>
                    </dependency>
             </dependencies>
       </dependencyManagement>
2、application.properties中的配置,必需禁止将自己作为客户端来注册,否则启动会报
server.port=1000
spring.application.name=eureka
eureka.client.serviceUrl.defaultZone=http://localhost:1000/eureka
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
3、启动类添加注解
 
 @SpringBootApplication
 @EnableEurekaServer
 @PropertySource({"classpath:application.properties"})
  public class EurekaServerApplication {
    public static void main(String[] args) {
         SpringApplication.run(EurekaServerApplication.class, args);
     }
  }
完成之后启动项目,访问http://localhost:1000/看到以下页面

客户端eureka client

在需要提供api服务的项目上配置

1、添加依赖
<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-eureka-server</artifactId>
	</dependency>
2、配置文件添加配置
server.port=1111
spring.application.name=chaos-api
eureka.instance.prefer-ip-address=true
eureka.instance.instance-id=${spring.cloud.client.ipAddress}:${server.port}
eureka.instance.ip-address=${spring.cloud.client.ipAddress}
eureka.client.serviceUrl.defaultZone=http://localhost:1000/eureka/
3、启动类添加注解@EnableEurekaServe

启动服务端项目后再访问服务中心地址就可以看到注册上去的服务了

 

分享到:
评论

相关推荐

    springboot 集成eureka 详细配置.docx

    3. 使用Eureka进行服务注册和服务发现,实现微服务间的通信。 这个过程只是一个基础的集成,实际应用中可能还需要配置Eureka的安全性、健康检查、自定义策略等高级特性。通过Eureka,我们可以轻松地管理微服务集群...

    SpringCloud+SpringBoot+Eureka源码

    SpringCloud和SpringBoot是Java开发领域中非常流行的微服务框架,Eureka则是SpringCloud生态中的一个关键组件,用于实现服务发现。在这个项目中,我们将会深入探讨这三个技术的结合使用,以及Eureka的源码分析。 ...

    springboot 注册 eureka demo

    SpringBoot与Eureka结合是SpringCloud微服务架构中的重要组成部分,用于实现服务的...通过这个示例,开发者可以快速学习和掌握如何在SpringBoot应用中集成Eureka,实现服务的注册与发现,进一步构建自己的微服务架构。

    springboot+eureka+feign.rar

    SpringBoot、Eureka和Feign是微服务架构中...这样,我们就成功地使用SpringBoot、Eureka和Feign构建了一个简单的服务应用。初学者可以通过这个实例学习微服务架构中的服务发现和声明式调用,进一步探索微服务的世界。

    springboot+eureka例子.zip

    这个"springboot+eureka例子"是一个基础的微服务架构示例,展示了如何在Spring Boot应用中集成Eureka,实现服务的注册与发现。通过这种方式,我们可以轻松地构建和管理复杂、可扩展的分布式系统。

    springboot整合eureka源代码,学习资料

    SpringBoot整合Eureka是构建微服务架构中的关键一环,Spring Boot简化了Spring应用程序的启动和配置,而Eureka则是Netflix开源的微服务组件,主要负责服务注册与发现。本学习资料聚焦于如何将这两者结合,以实现高效...

    springboot3+cloud2023 进行 eureka server与client注册与发现

    本文介绍了如何使用 Spring Boot 3 和 Spring Cloud 2023 来实现基于 Eureka 的服务发现。通过上述步骤,我们不仅搭建了 Eureka Server 作为服务注册中心,还实现了服务提供者与之交互的功能。这种模式极大地简化了...

    SpringCloud及SpringBoot整合使用, 包含zuul, eureka服务, mybatis做持久层

    SpringCloud及SpringBoot整合使用, 包含zuul, eureka服务, mybatis做持久层, Maven模块划分: boot-test父模块, admin, remote-server, eureka-server, ruul-server, commons-api模块; 其中admin用来提供web服务模块;...

    springboot2.0 +zuul gateway + eureka + feign 整合

    在本项目中,我们探索的是一个基于Spring Boot 2.0的微服务架构,其中集成了Zuul Gateway、Eureka服务发现以及Feign客户端调用。这是一个完整的微服务生态系统,旨在实现高效、可靠的分布式系统通信。让我们逐一深入...

    SpringBoot+Eureka实现微服务负载均衡的示例代码

    在 Spring Boot 中使用 Eureka 实现微服务负载均衡非常简单,只需要将 Eureka 服务器和 Eureka 客户端添加到项目中,并配置相应的参数,就可以实现微服务的注册和发现。 首先,需要创建一个 Eureka 服务器,用于...

    【学生课程实验】Springboot集成Eureka注册中心实验

    每个微服务都会定时从注册中心获取服务列表,同时汇报自己的运行情况,这样当有的服务需要调用其他服务时,就可以从自己获取到的服务列表中获取实例地址进行调用,Eureka实现了这套服务注册与发现机制。 本实验通过...

    eureka服务注册发现demo

    描述中提到了"基于eureka的springcloud服务注册发现demo,springboot版本为2.0.6,springcloud版本为Finchley.SR2"。这表明这个示例是基于特定版本的Spring Boot和Spring Cloud构建的。Spring Boot简化了Java应用的...

    springboot+springcloud+eureka+ribbon/feign

    Eureka Server负责存储、检索服务实例的信息,而服务提供者和服务消费者则通过注册和查询Eureka Server来实现服务的自我管理和发现。服务实例向Eureka Server发送心跳以保持其在线状态,若心跳中断,Eureka会自动...

    Eureka服务注册与发现-示例代码

    Eureka是Spring Cloud Netflix框架中的一个关键组件,主要用于实现服务的注册与发现。...通过这两个项目,你可以更深入地理解Eureka的使用方法,以及如何在实际项目中集成Eureka来实现服务注册与发现。

    springboot eureka详解

    springboot eureka 的机制 注册中心与服务中心的关系 分布式之间的关系

    01Spring Cloud Eureka:服务注册与发现1

    为了搭建Eureka注册中心,我们可以使用IDEA创建一个eureka-server模块,并使用Spring Initializer初始化一个SpringBoot项目。然后,在pom.xml文件中添加Eureka-server的依赖,并在启动类上添加@EnableEurekaServer...

    SpringCloud案例(集成了Eureka、Ribbon、Feign)

    本案例聚焦于Spring Cloud的核心组件——Eureka、Ribbon和Feign,它们是实现服务发现和服务间通信的重要工具。 **1. Eureka** Eureka是Spring Cloud中的服务注册与发现组件,它允许各个服务实例向中心注册自己的元...

    spring cloud eureka(免费下载)

    Spring Cloud Eureka是Spring Cloud框架中的一个核心组件,主要用于实现微服务之间的服务发现和服务治理。在微服务架构中,每个服务可能都会独立部署和扩展,Eureka作为一个服务注册中心,帮助各个服务实例进行注册...

    SpringBoot系列 使用 consul 作为服务注册组件.docx

    使用 Consul 作为 SpringBoot 应用的服务注册组件,可以享受到其全面的功能,如服务发现、健康检查和 DNS 支持。集成 Consul 时,通过 @EnableDiscoveryClient 注解、DiscoveryClient 和 LoadBalancerClient 接口,...

    springboot+ribbon+eureka+fegin整合的一个Demo

    在本项目中,"springboot+ribbon+eureka+fegin整合的一个Demo" 是一个全面展示Spring Boot微服务架构中服务发现、负载均衡和远程调用功能的实例。这个例子可以帮助开发者深入理解如何在实际开发中运用这些技术组件,...

Global site tag (gtag.js) - Google Analytics