依赖
<dependency>
<groupId>org.springframework.cloud
</groupId>
<artifactId>spring-cloud-starter-eureka-server
</artifactId>
</dependency>
yml配置文件
server:
port:
1001
eureka:
instance:
hostname: localhost
client:
register
-with-eureka:
false
fetch
-registry:
false
service
-url:
defaultZone: http:
启动配置
@EnableEurekaServer
创建完成. 访问地址为:localhost:自己配置的端口号 注意的坑有defaultZone不能写成default-zone