consul的具体安装与操作查看博客的consul系列。

一、启动consul

(1个server+1个client,方便起见,client使用本机):查看:http://www.cnblogs.com/java-zhao/p/5375132.html

1、开启虚拟机-->切换到vagrantFile中配置的节点

  • vagrant up
  • vagrant ssh n110

2、启动server(n110)

  • consul agent -server -bootstrap-expect=1  -data-dir=/tmp/consul -node=server-110 -bind=192.168.21.110 -dc=zjgdc1 -client 0.0.0.0 -ui

说明:-client 0 0 0 0 -ui-->使得客户端可以直接通过url访问服务端的consul ui

3、启动client(local)

  • consul agent -data-dir=/tmp/consul -node=client-my -bind=xxx -dc=zjgdc1

说明:xxx代表本机IP

4、client加入server

  • consul join 192.168.21.110

二、java部分

1、pom.xml

        <!-- consul-client -->
<dependency>
<groupId>com.orbitz.consul</groupId>
<artifactId>consul-client</artifactId>
<version>0.10.0</version>
</dependency>
<!-- consul需要的包 -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.22.2</version>
</dependency>

说明:consul的java客户端有两个:consul-client和consul-api。

consul-client的github地址:https://github.com/OrbitzWorldwide/consul-client

2、ConsulService

 package com.xxx.firstboot.service;

 import java.net.MalformedURLException;
import java.net.URI;
import java.util.List; import org.springframework.stereotype.Service; import com.orbitz.consul.AgentClient;
import com.orbitz.consul.Consul;
import com.orbitz.consul.HealthClient;
import com.orbitz.consul.KeyValueClient;
//import com.orbitz.consul.NotRegisteredException;
import com.orbitz.consul.StatusClient;
import com.orbitz.consul.model.health.ServiceHealth; @Service
public class ConsulService { /**
* 注册服务
* 并对服务进行健康检查
* servicename唯一
* serviceId:没发现有什么作用
*/
public void registerService(String serviceName, String serviceId) {
Consul consul = Consul.builder().build(); //建立consul实例
AgentClient agentClient = consul.agentClient(); //建立AgentClient try {
/**
* 注意该注册接口:
* 需要提供一个健康检查的服务URL,以及每隔多长时间访问一下该服务(这里是3s)
*/
agentClient.register(8080, URI.create("http://localhost:8080/health").toURL(), 3, serviceName, serviceId, "dev");
} catch (MalformedURLException e) {
e.printStackTrace();
}
// try {
// agentClient.pass(serviceId);//健康检查
// } catch (NotRegisteredException e) {
// e.printStackTrace();
// }
} /**
* 发现可用的服务
*/
public List<ServiceHealth> findHealthyService(String servicename){
Consul consul = Consul.builder().build();
HealthClient healthClient = consul.healthClient();//获取所有健康的服务
return healthClient.getHealthyServiceInstances(servicename).getResponse();//寻找passing状态的节点
} /**
* 存储KV
*/
public void storeKV(String key, String value){
Consul consul = Consul.builder().build();
KeyValueClient kvClient = consul.keyValueClient();
kvClient.putValue(key, value);//存储KV
} /**
* 根据key获取value
*/
public String getKV(String key){
Consul consul = Consul.builder().build();
KeyValueClient kvClient = consul.keyValueClient();
return kvClient.getValueAsString(key).get();
} /**
* 找出一致性的节点(应该是同一个DC中的所有server节点)
*/
public List<String> findRaftPeers(){
StatusClient statusClient = Consul.builder().build().statusClient();
return statusClient.getPeers();
} /**
* 获取leader
*/
public String findRaftLeader(){
StatusClient statusClient = Consul.builder().build().statusClient();
return statusClient.getLeader();
} }

列出了常用API。

注意:

  • 服务注册的时候不需要传递IP
  • 服务注册的时候需要给出health check的url和时间间隔。该url是一个服务(要提供该服务,需要使用spring boot actuator,具体操作如下:)。

直接在pomx.ml中加入:

         <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

此时重启应用后,访问http://localhost:8080/health,得到如下结果一个json串:

 {
status: "UP",
diskSpace: - {
status: "UP",
total: 249769230336,
free: 182003318784,
threshold: 10485760
},
rabbit: - {
status: "UP",
version: "3.6.1"
},
mongo: - {
status: "UP",
version: "3.2.6"
},
db: - {
status: "UP",
myTestDbDataSource: - {
status: "UP",
database: "MySQL",
hello: 1
},
myTestDb2DataSource: - {
status: "UP",
database: "MySQL",
hello: 1
},
dataSource: - {
status: "UP",
database: "MySQL",
hello: 1
}
},
_links: - {
self: - {
href: "http://localhost:8080/health"
}
}
}
Format online

说明:status

  • UP:服务器正常(以上只要有一个组件DOWN,服务器就处于DOWN,所以我需要启动服务器上的mongo和rabbitmq,这里我之前使用了这两个组件)
  • DOWN:服务器挂了

3、ConsulController

 package com.xxx.firstboot.web;

 import java.util.List;

 import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController; import com.orbitz.consul.model.health.ServiceHealth;
import com.xxx.firstboot.service.ConsulService; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; @Api("consul相关API")
@RestController
@RequestMapping("/consul")
public class ConsulController {
@Autowired
private ConsulService consulService; /*******************************服务注册与发现*******************************/
@ApiOperation("注册服务")
@RequestMapping(value="/registerService/{servicename}/{serviceid}",method=RequestMethod.POST)
public void registerService(@PathVariable("servicename") String serviceName,
@PathVariable("serviceid") String serviceId) {
consulService.registerService(serviceName, serviceId);
} @ApiOperation("发现服务")
@RequestMapping(value="/discoverService/{servicename}",method=RequestMethod.GET)
public List<ServiceHealth> discoverService(@PathVariable("servicename") String serviceName) {
return consulService.findHealthyService(serviceName);
} /*******************************KV*******************************/
@ApiOperation("store KV")
@RequestMapping(value="/kv/{key}/{value}",method=RequestMethod.POST)
public void storeKV(@PathVariable("key") String key,
@PathVariable("value") String value) {
consulService.storeKV(key, value);
} @ApiOperation("get KV")
@RequestMapping(value="/kv/{key}",method=RequestMethod.GET)
public String getKV(@PathVariable("key") String key) {
return consulService.getKV(key);
} /*******************************server*******************************/
@ApiOperation("获取同一个DC中的所有server节点")
@RequestMapping(value="/raftpeers",method=RequestMethod.GET)
public List<String> findRaftPeers() {
return consulService.findRaftPeers();
} @ApiOperation("获取leader")
@RequestMapping(value="/leader",method=RequestMethod.GET)
public String leader() {
return consulService.findRaftLeader();
}
}

4、测试(通过swagger测试+通过consul UI查看结果)

  • swagger:http://localhost:8080/swagger-ui.html
  • consul UI:http://192.168.21.110:8500/ui/

上图展示了consul UI所展示的所有东西。services、nodes、kv、datacenter

第二十章 springboot + consul(1)的更多相关文章

  1. JavaScript高级程序设计:第二十章

    第二十章 一.语法 JSON的语法可以表示以下三种类型的值: (1)简单值 (2)对象 JSON的对象与javascript字面量有一些不同.例如,在javascript中,前面的对象字面量可以写成下 ...

  2. 第二十章 Django数据库实战

    第二十章 Django数据库实战 第一课 获取单表单数据的三种方式: urls.py中的路由代码: path('busniess',views.busniess), views.py中代码: def ...

  3. Gradle 1.12翻译——第二十章. 构建环境

    有关其他已翻译的章节请关注Github上的项目:https://github.com/msdx/gradledoc/tree/1.12,或访问:http://gradledoc.qiniudn.com ...

  4. “全栈2019”Java多线程第二十章:同步方法产生死锁的例子

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java多 ...

  5. “全栈2019”Java异常第二十章:自定义异常详解

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java异 ...

  6. “全栈2019”Java第二十章:按位与、按位或、异或、反码、位运算

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java第 ...

  7. 2017.3.14 activiti实战--第二十章--REST服务

    学习资料:<Activiti实战> 第二十章 REST服务 20.1 通信协议概述 略. 20.2 REST API概述 资源分类 资源基础URI 说明 Deployments manag ...

  8. python 教程 第二十章、 数据库编程

    第二十章. 数据库编程 环境设置 1).安装MySQL-python http://www.lfd.uci.edu/~gohlke/pythonlibs/ MySQL-python-1.2.3.win ...

  9. 20190920 On Java8 第二十章 泛型

    第二十章 泛型 多态的泛化机制: 将方法的参数类型设为基类: 方法以接口而不是类作为参数: 使用泛型: 泛型实现了参数化类型 简单泛型 Java 泛型的核心概念:你只需告诉编译器要使用什么类型,剩下的 ...

随机推荐

  1. python 学习之dict和set类型

    什么是dict 我们已经知道,list 和 tuple 可以用来表示顺序集合,例如,班里同学的名字: ['Adam', 'Lisa', 'Bart'] 或者考试的成绩列表: [95, 85, 59] ...

  2. Linux下安装Zookeeper

    Zookeeper是一个协调服务,可以用它来作为配置维护.名字服务.分布式部署: 下面,我来分享一下在Linux下安装Zookeeper的整个步骤,让大家少走弯路. 一.Zookeeper下载 [ro ...

  3. iOS 11开发教程(四)iOS11模拟器介绍一

    iOS11模拟器介绍 在图1.6或者1.7中所看到的类似于手机的模型就是iOS模拟器.iOS模拟器是在没有iPhone或iPad设备时,对程序进行检测的设备.iOS模拟器可以模仿真实的iPhone或i ...

  4. 每日踩坑 2018-06-19 AutoMapper简单性能测试

    想使用 AutoMapper 类库来做一些映射到 DTO 对象的操作 但既然类似这样的类库内部是用反射来实现的,那么会比较在意性能. 所以来简单测试一下性能. 关于测试结果呢 emmmm 我是比较吃惊 ...

  5. 洛谷.4252.[NOI2006]聪明的导游(提答 直径 随机化)

    题目链接 随机化 暴力: 随便从一个点开始DFS,每次从之前得到的f[i]最大的子节点开始DFS.f[i]为从i开始(之前)能得到的最大答案. 要注意的是f[i]应当有机会从更小的答案更新, 9.10 ...

  6. [CC-MCHEF]MasterChef

    [CC-MCHEF]MasterChef 题目大意: \(n(n\le10^5)\)片花,第\(i\)片花的美观度为\(b_i(|b_i|\le10^9)\).总体美观度为各片花的美观度之和. 由于有 ...

  7. php在linux后台执行

    <?php ignore_user_abort();//后台运行 ini_set('default_socket_timeout', -1);//socket不超时 set_time_limit ...

  8. SpringMVC 方法参数设置

    /** 在方法中配置参数: (1) 内置对象配置: request:获取cookie.请求头... 获取项目根路径 request.getContextPath() response:用于ajax的输 ...

  9. 对于asp.net mvc异步查询

    如何做MVC异步查询,做列表页面. 查询是项目中必不可少的工作,而且不同的项目不同的团队,都有自己的简单方法.Asp.net mvc 有自己独特的优势,下面是结合mvc实现一个产品列表的Demo. 问 ...

  10. cocos2dx 3.0 中文 iconv 转换函数

    //#include <string> #pragma once #include "cocos2d.h"; #include "iconv\include\ ...