spring cloud问题梳理
solivemore
这个作者很懒,什么都没留下…
展开
-
zuul-开发问题梳理-1
zuul 中routes端点不显示: 这是因为默认actuator 默认没有开启routes端点,开启routes端点如下所示 management: endpoints: web: exposure: include: routes 排除服务发现的默认映射: 使用ignored-services zuul: routes: demos...原创 2019-02-13 21:12:50 · 149 阅读 · 0 评论 -
spring boot开发问题梳理-1
Failed to configure a DataSource: ‘url’ attribute is not specified and no embedde 问题描述: 启动新的spring boot项目时,提示Failed to configure a DataSource: ‘url’ attribute is not specified and no embedde。其中配置的数据库的...原创 2019-02-13 21:43:55 · 154 阅读 · 0 评论 -
hystrix-1
使用fallbackmethod 指定后备方法(如果后备方法也需要调用远程方法,一定也要加上@HystrixCommand注解) 指定hystrix 的超时时间 commandProperties={@HystrixProperty(name=“execution.isolation.thread.timeoutInMillSecond”,vale=time)} hystrix壁仓模式–》(默认...原创 2019-02-13 22:49:22 · 177 阅读 · 0 评论 -
config-1
配置管理方案 项目名称 描述 特点 Etcd 使用go开发的开源项目,用于服务发现和键值管理,使用raft协议作它的分布式计算模型 1非常快和可伸缩.2.可分布式.3.命令行驱动,易于搭建和使用 Eureka 由Netflix开发,久经测试,用于服务发现和键值管理 1.分布式键值存储,2.灵活,需要时间设置3.提供开箱即用的动态客户端刷新 Consul 由Hashicorp...原创 2019-02-13 22:53:42 · 212 阅读 · 0 评论 -
Spring Cloud各组件总结归纳
前面介绍了很多Spring Cloud的组件,本篇按照自己的角度来做一次归纳。 Spring Cloud技术应用从场景上可以分为两大类:润物无声类和独挑大梁类。 润物无声,融合在每个微服务中、依赖其它组件并为其提供服务。 Ribbon,客户端负载均衡,特性有区域亲和、重试机制。 Hystrix,客户端容错保护,特性有服务降级、服务熔断、请求缓存、请求合并、依赖隔离。Hystrix,客户端容错保护...转载 2019-02-13 23:02:05 · 148 阅读 · 0 评论