逆水行舟,不进则退。
上善若水。水利万物而不争,处众人之所恶,故几于道。居善地,心善渊,与善仁,言善信,政善治,事善能,动善时。夫唯不争,故无尤。
spring-cloud-kubernetes 微服务框架使用 spring-cloud-kubernetes 微服务框架使用
虽然时至当下,微服务架构已经推出了Service Mesh、Serverless等方式,但使用 Spring cloud 这种 SDK框架方式搭建微服务的企业仍然众多。 随着 K8S 的普及、Spring cloud Netflix 套组官
2024-03-10
Spring cloud Netflix中的超时配置 Spring cloud Netflix中的超时配置
一般SpringCloud中超时配置,含Hystrix/Ribbon两部分: ribbon: ReadTimeout: 120000 ConnectTimeout: 120000 hystrix: command:
2018-12-04
尽量不要在 Spring Config Server 中使用太长的数组 尽量不要在 Spring Config Server 中使用太长的数组
上周second vendor在使用我们搭建好的config server向API-Gateway中追加配置项的时候,发生了一个小插曲。 本来本意是想追加一条 忽略去校验Token 的API Pattern, 但是失误操作成覆盖整个 忽略去
2018-10-07
Spring cloud Feign Spring cloud Feign
1. dependency dependencies { compile("org.springframework.cloud:spring-cloud-starter-feign") …… } 2. annotation
2018-07-25
Spring config server Spring config server
Server端 1. 添加依赖 dependencies { compile 'org.springframework.cloud:spring-cloud-config-server' compile 'org.sprin
2018-06-13
spring boot actuator 基本配置 spring boot actuator 基本配置
1.5.3版本官方doc spring-boot-actuator包自动提供了默认的management endpoint,用以监控容器内部的各种状态和指标。 import dependencies { compile("org.spri
2018-06-08
Spring Cloud Eureka 服务治理 Spring Cloud Eureka 服务治理
服务注册中心 在服务治理框架中,通常有一个 服务注册中心,提供: 服务注册。 每个服务单元向其登记自己提供的服务,将主机、端口号、版本号等告知注册中心,注册中心按 服务名 来组织清单。 服务发现。 服务调用方需要调用某个服务名的实例提供的
2018-05-16