栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

springcloud(2)-实现eureka

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

springcloud(2)-实现eureka

前言

所讲代码仓库地址:https://gitee.com/raoyuuuu/springcloud-demo

eureka-server的创建相对简单,步骤如下

  • 创建工程
  • 导入eureka依赖
  • application配置eureka相关配置
  • 启动类上注解开启eureka
实现 建立spring boot项目

pom依赖,主要为eureka服务端依赖

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

完整



    4.0.0
    
        com.example
        cloud-parent
        0.0.1-SNAPSHOT
        
    

    com.example
    cloud-eureka
    0.0.1-SNAPSHOT
    cloud-eureka
    Demo project for Spring Boot

    
        1.8
    
    
        
            org.springframework.boot
            spring-boot-starter
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        

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

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    



application配置
server:
  port: 7001

# eureka配置
eureka:
  instance:
    hostname: localhost # eureka服务端的实例名称
  client:
    register-with-eureka: false # 是否向eureka注册自己,因为这里为eureka服务端,所以设置false
    fetch-registry: false # false 表示自己为注册中心
    service-url:
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
启动类开启eureka服务
@EnableEurekaServer
@SpringBootApplication
public class CloudEurekaApplication {

    public static void main(String[] args) {
        SpringApplication.run(CloudEurekaApplication.class, args);
    }

}
启动服务,访问 http://localhost:7001/

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/341148.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号