springcloud-Eureka注册中心搭建
2021-06-28 11:06
阅读:672
标签:key stat host mode variable 注册 registry eureka lease
导入相关的pom依赖
spring-cloud-starter-eureka-server
-
配置相关的配置文件
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);
}
}
springcloud-Eureka注册中心搭建
标签:key stat host mode variable 注册 registry eureka lease
原文地址:https://www.cnblogs.com/zhu12/p/14930593.html
上一篇:21.Python:指定字符编码
下一篇:JAVA基础-面向接口编程
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:springcloud-Eureka注册中心搭建
文章链接:http://soscw.com/index.php/essay/98872.html
文章标题:springcloud-Eureka注册中心搭建
文章链接:http://soscw.com/index.php/essay/98872.html
评论
亲,登录后才可以留言!