这篇文章将为大家详细讲解有关spring cloud中如何启动Eureka Server,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
具体如下:
一、新建工程
二、工程结构
三、修改配置文件
#eureka.client.registerWithEureka:表示是否将自己注册到EurekaServer,默认为true。由于当前这个应用就是EurekaServer,故而设为false #eureka.client.fetchRegistry:表示是否从EurekaServer获取注册信息,默认为true。因为这是一个单点的EurekaServer,不需要同步其他的EurekaServer节点的数据,故而设为false。 #eureka.client.serviceUrl.defaultZone:设置与EurekaServer交互的地址,查询服务和注册服务都需要依赖这个地址。默认是http://localhost:8761/eureka;多个地址可使用,分隔。 server: port:8761 eureka: client: register-with-eureka:false fetch-registry:false service-url: defaultZone:http://localhost:8761/eureka//EurekaServer注册服务的地址
四、添加开启Eureka Server注解
packagecom.chhliu.springcloud.eureka; importorg.springframework.boot.SpringApplication; importorg.springframework.boot.autoconfigure.SpringBootApplication; importorg.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @SpringBootApplication @EnableEurekaServer//注解支持 publicclassSpringcloudEurekaApplication{ publicstaticvoidmain(String[]args){ SpringApplication.run(SpringcloudEurekaApplication.class,args); } }
五、验证
在浏览器中输入http://localhost:8761/地址,就可以看到Eureka Server的注册页面了
通过上面的几个步骤,单机版的Eureka Server就成功的启动了!
关于“spring cloud中如何启动Eureka Server”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
「web安全」Spring Boot eureka xstream 反序列化
Spring(Cloud,Config,使用本地配置文件方式)
Spring(Cloud,Gateway,内存溢出的解决方案)
Spring,Cloud,Gateway,内存溢出的解决方案,恰卡网带你了解更多相关信息。记SpringCloudG...
Spring,cloud,限流的多种方式
在频繁的网络请求时,服务有时候也会受到很大的压力,尤其是那种网络攻击,非法的。这样的情形有时候需要作一些限制。例如:限制对方的请求...
用户名
密码
记住登录状态 忘记密码?
邮箱
确认密码
我已阅读并同意 用户协议