SpringCloud-2.X 学习笔记01 Eureka Server 搭建
程序员文章站
2022-07-13 08:36:44
...
1 搭建服务
2 添加注解
package com.xu.eureka.server;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
3 修改配置
############################################################
# 应用名称
############################################################
spring.application.name=EurekaServer
############################################################
# 服务端口配置
############################################################
server.port=8761
############################################################
# eureka server 配置
############################################################
eureka.instance.hostname=127.0.0.1
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka