博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springcloud~Eureka实例搭建
阅读量:5951 次
发布时间:2019-06-19

本文共 1190 字,大约阅读时间需要 3 分钟。

服务端

build.gradle配置

dependencies {	compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server')	testCompile('org.springframework.boot:spring-boot-starter-test')}dependencyManagement {	imports {		mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"	}}

bootstrap.yml相关配置

server.port: 8761management.port: 8762eureka:  instance:    hostname: localhost  client:    registerWithEureka: false    fetchRegistry: false    serviceUrl:      defaultZone: http://localhost:8761/eureka/

启动代码

package lind.sprindemo.eurekaServer;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.client.discovery.EnableDiscoveryClient;import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;@EnableEurekaServer@EnableDiscoveryClient@SpringBootApplicationpublic class EurekaServerApplication {	public static void main(String[] args) {		SpringApplication.run(EurekaServerApplication.class, args);	}}

客户端

向我们配置中心的客户端同时也是eureka的一个客户端,例如一个订单服务,它的配置存储在配置中心,它如果希望公开自己,就需要是eureka的一个客户端。

例子

graph TD A[订单服务]-->B(注册) B-->C(eureka) A-->D(获取配置) D-->E(clientserver)

转载地址:http://cysxx.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
CentOS定时同步系统时间
查看>>
批量删除用户--Shell脚本
查看>>
如何辨别android开发包的安全性
查看>>
Eclipse Java @Override 报错
查看>>
交换机之间的VLAN通信(trunk)
查看>>
heartbeat-gui
查看>>
关于一阶逻辑中实例化的可满足性问题
查看>>
cut命令用法讲解
查看>>
我的第一篇日志。
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
企业实战:mysql5.6数据库备份、恢复脚本
查看>>
CentOS7安装mysql
查看>>
RMB數字轉換中文
查看>>
基于rhel7.2的Zabbix平台搭建和部署(二)
查看>>
Html5本地存储和本地数据库
查看>>
JQ 循环切换DIV
查看>>
Android Fragment实践(二)
查看>>
centos 修改主机名立即生效和重启后也生效的方法
查看>>