springcloud学习笔记(一)服务注册和发现Eureka Server搭建

一、首先新建一个springboot项目勾选EurekaServer完成项目搭建。

springcloud学习笔记(一)服务注册和发现Eureka Server搭建_第1张图片

二、在启动类添加注解 @EnableEurekaServer。在项目启动类上使用@EnableEurekaServer,可以将项目作为SpringCloud中的注册中心。

三、修改配置文件

server:
  port: 8761
eureka:
  instance:
    hostname: localhost
  client:
  #声明自己是个服务端
    register-with-eureka: false
    fetch-registry: false
    serviceUrl:
          defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/

完成以上这些就完成了注册中心的搭建。

访问:localhost:8761

你可能感兴趣的:(springcloud)