尽量不要在 Spring Config Server 中使用太长的数组上周second vendor在使用我们搭建好的config server向API-Gateway中追加配置项的时候,发生了一个小插曲。 本来本意是想追加一条 忽略去校验Token 的API Pattern, 但是失误操作成覆盖整个 忽略去2018-10-07 Spring CloudJava Spring Cloud
Java分布式复习题RMI RPC CAP 定理 CAP 定理对分布式数据存储系统的特性进行高度抽象,提炼成了3个维度: Consistency 一致性, 每一次读取操作,要么系统返回最新的数据写入值(无论读取到哪一个数据节点),要么返回系统错误。 Avai2018-09-14 JavaJava
Spring cloud Feign1. dependency dependencies { compile("org.springframework.cloud:spring-cloud-starter-feign") …… } 2. annotation2018-07-25 Spring CloudJava Spring Cloud
Spring config serverServer端 1. 添加依赖 dependencies { compile 'org.springframework.cloud:spring-cloud-config-server' compile 'org.sprin2018-06-13 Spring CloudJava Spring Cloud
spring boot actuator 基本配置1.5.3版本官方doc spring-boot-actuator包自动提供了默认的management endpoint,用以监控容器内部的各种状态和指标。 import dependencies { compile("org.spri2018-06-08 Spring CloudJava Spring Cloud
Ethereum 开发工具Using Remix 有个叫Remix的在线IDE,快速地验证智能合约,或者一些基本调试,还是特别方便的。 Using truffle 安装ganache 可以选择安装有图形界面的ganache,或者无图形界面的命令行ganache-cl2018-06-05 EthereumEthereum Blockchain
Spring Cloud Eureka 服务治理服务注册中心 在服务治理框架中,通常有一个 服务注册中心,提供: 服务注册。 每个服务单元向其登记自己提供的服务,将主机、端口号、版本号等告知注册中心,注册中心按 服务名 来组织清单。 服务发现。 服务调用方需要调用某个服务名的实例提供的2018-05-16 Spring CloudJava Spring Cloud
Solidity Zombies 学习笔记以太坊的一个加密僵尸游戏。 为了便于记忆,将其中的教程产出code贴了出来。 ZombieFactory.sol pragma solidity ^0.4.19; import "./ownable.sol"; contract Zomb2018-05-03 EthereumEthereum Blockchain
MongoDB 查询语句Get Started Official Manual 借用官网的例子数据:db.inventory { item: "journal", qty: 25, status: "A", size: { h: 14, w: 21, uom: "2017-02-17 NoSQLMongoDB NoSQL
Docker学习笔记本地用的Docker for Mac,使用official tutorial 进行前期安装工作。 安装好后,运行第一个命令 docker --version Docker version 1.12.1, build 6f9534c 官方2016-11-08 DockerDevOps Docker