1 服务注册与发现
spring cloud 为开发人员提供了快速构建分布式系统的一些工具,包括配置管理、服务发现、断路器、路由、微代理、事件总线、全局锁、决策竞选、分布式会话等等。它运行环境简单,可以在开发人员的电脑上跑。spring cloud是基于springboot的。
创建服务注册中心Eureka
在这里,我们需要用的的组件上Spring Cloud Netflix的Eureka
,一个服务注册和发现模块。
- 创建一个maven主工程
- 创建2个model工程:一个model工程作为服务注册中心,即
Eureka Server
,另一个作为Eureka Client
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
</dependency>
启动类:@EnableEurekaServer
server:
port: 8888
eureka:
instance:
hostname: 127.0.0.1
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
浏览器打开:http://127.0.0.1:8888/
创建一个服务提供者
eureka client
当client向server注册时,它会提供一些元数据,例如主机和端口,URL,主页等。Eureka server 从每个client实例接收心跳消息。 如果心跳超时,则通常将该实例从注册server中删除
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
启动类:@EnableEurekaClient
server:
port: 9001
spring:
application:
name: CLIENT01
eureka:
client:
serviceUrl:
defaultZone: http://127.0.0.1:8888/eureka/
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
分布式Server
Eureka通过运行多个实例,使其更具有高可用性。事实上,这是它默认的属性,你需要做的就是给对等的实例一个合法的关联serviceUrl.defaultZone
。
application-peer1.yml
server:
port: 9000
spring:
profiles: peer1
eureka:
instance:
hostname: peer1
client:
serviceUrl:
defaultZone: http://peer2:9001/eureka/
application-peer2.yml
server:
port: 9001
spring:
profiles: peer2
eureka:
instance:
hostname: peer2
client:
serviceUrl:
defaultZone: http://peer2:9000/eureka/
注意:多台,defaultZone用逗号隔开
服务注册(consul)
consul具有分布式、高可用、高扩展性
- 服务发现:consul通过http 方式注册服务,并且服务与服务之间相互感应。
- 服务健康监测
- key/value 存储
- 多数据中心
安装consul
下载consul,wget:…consul_1.0.2_linux_amd64.zip
./consul agent -dev -ui -node=consul-dev -client=192.168.1.100
浏览器输入:192.168.1.100:8500
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-consul-discovery</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator</artifactId>
</dependency>
启动类:@EnableDiscoveryClient
server1:
server:
port: 9999
spring:
application:
name: serv-consul1
cloud:
consul:
host: 192.168.1.113
port: 8500
discovery:
healthCheckPath: /health
healthCheckInterval: 15s
instance-id: serv-consul1
service-name: serv-consul
tags: dev
client:
spring:
application:
name: CLIENT01
cloud:
consul:
host: 192.168.1.113
port: 8500
discovery:
register: false