springCloud核心组件一 Eureka(注册中心)

首先创建一个springboot项目 作为一个注册中心
image.png

image.png

image.png

此时我们的pom.xml文件如下:



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.3.RELEASE
         
    
    com.example
    register
    0.0.1-SNAPSHOT
    register
    Demo project for Spring Boot

    
        1.8
        Greenwich.RELEASE
    

    
        
            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-milestones
            Spring Milestones
            https://repo.spring.io/milestone
        
    


打开启动文件为其添加注册 @EnableEurekaServer

@SpringBootApplication
@EnableEurekaServer
public class RegisterApplication {

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

}

在resources文件夹下面新建application.yml文件

server:
  port: 8886
eureka:
  instance:
    hostname: localhost
  client:
    register-with-eureka: false
    fetch-registry: false
    service-url:
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/


spring:
  application:
    name: eurka-server

然后启动项目
输入地址 http://localhost:8886/

image.png

出现上面的页面说明我们的注册中心搭建成功了,此时我们的application为空 说明当前还没有人注册服务

你可能感兴趣的:(springCloud核心组件一 Eureka(注册中心))