Spring Cloud 之 hystrix Spring Cloud 之 hystrix
引入jar包 compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-netflix-hystrix', version: '2.2.3.RELEASE
2023-08-27
Spring Cloud 之 Config Spring Cloud 之 Config
为什么要统一管理微服务配置对于Spring Boot应用,我们可以将配置内容写入application.yml,设置多个profile,也可以用多个application-{profile}.properties文件配置
2023-08-27
Spring Cloud 之 Feign Spring Cloud 之 Feign
Feign是什么?Feign是一个声明式WebService客户端.使用Feign能让编写WebService客户端更加简单,它的使用方法是定义一个接口,然后在上面添加注解,同时也支持JAX-RS标准的注解.Feign也支持可拔插式的编码器
2023-08-27
Spring Cloud 之 Ribbon Spring Cloud 之 Ribbon
通过Spring Cloud Ribbon的封装,我们在微服务架构中使用客户端负载均衡调用非常简单,只需要两步: 服务提供者只需要启动多个服务实例并注册到一个注册中心或多个相关联的服务注册中心。 服务消费者直接通过调用被@LoadBala
2023-08-27
Spring Cloud 之 Consule Spring Cloud 之 Consule
docker 下环境搭建.env文件: CONSUL_IDR=./ docker-compose.yml文件: version: '3' services: consul: image: consul:latest
2023-08-27