spring cloud中如何启动Eureka Server

这篇文章将为大家详细讲解有关spring cloud中如何启动Eureka Server,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

具体如下:

一、新建工程

spring cloud中如何启动Eureka Server

二、工程结构

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的注册页面了

spring cloud中如何启动Eureka Server

通过上面的几个步骤,单机版的Eureka Server就成功的启动了!

关于“spring cloud中如何启动Eureka Server”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

发布于 2021-07-24 22:37:41
收藏
分享
海报
0 条评论
168
上一篇:如何解决asp.net中eval不能定义变量的问题 下一篇:php怎么调整gif动画图片尺寸
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码