-
导入相关的pom依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
<version>1.4.6.RELEASE</version>
</dependency>
-
配置相关的配置文件
server:
port: 7001
eureka:
instance:
hostname: localhost
client:
#是否注册到注册中心
register-with-eureka: false
#表示自己就是注册中心
fetch-registry: false
service-url:
# 配置多个表示集群
defaultZone: http://localhost:7002/eureka, http://localhost:7003/eureka
server:
#表示开启eureka的自我保护机制,其实默认就是开启的
enable-self-preservation: true
-
编写主启动类开启服务
@SpringBootApplication
@EnableEurekaServer
public class EurekaServer_7001 {
public static void main(String[] args) {
SpringApplication.run(EurekaServer_7001.class, args);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。