摘要:
1.配置application.properties spring.datasource.url=jdbc:mysql://localhost:3306/myht?characterEncoding=utf-8spring.datasource.username=rootspring.datasou 阅读全文
摘要:
阅读全文
摘要:
经过测试,书上应该是写错了,如果要全部的路由加前缀,需要将zuul.stripPrefix=true进行设置 而不是书上所说的false 阅读全文
摘要:
如果有error过滤器,会进入error 阅读全文
摘要:
zuul本射自动创建eureka中的服务的路由 阅读全文
摘要:
阅读全文
摘要:
我们使用Spring Cloud Ribbon实现客户端负载均衡的时候,通常都会利用@LoadBalanced来让RestTemplate具备客户端负载功能,从而实现面向服务名的接口访问。 下面的例子,实现了对服务名为hello-service的/hello接口的调用。由于RestTemplate被 阅读全文
摘要:
@HystrixCommand(ignoreExceptions={ BusinessException.class, IllegalArgumentException.class, BadCredentialsException.class, AccessDeniedException.class 阅读全文
摘要:
turbine是聚合服务器发送事件流数据的一个工具,hystrix的监控中,只能监控单个节点,实际生产中都为集群,因此可以通过 turbine来监控集群下hystrix的metrics情况,通过eureka来发现hystrix服务。 1.断路器1 入口类 @SpringBootApplication 阅读全文
摘要:
添加依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency> 1.启动类 @SpringBootAp 阅读全文