疯狂Spring Cloud连载(15)第一个Hystrix程序
本文节选自《疯狂Spring Cloud微服务架构实战》 京东购买地址: https://item.jd.com/12256011.html 当当网购买地址: http://product.dangdang.com/25201393.html Spring Cloud教学视频: https://my.oschina.net/JavaLaw/blog/1552993 Spring Cloud电子书: https://my.oschina.net/JavaLaw/blog/1570383 第一个Hystrix程序 先编写一个简单的Hello World程序,展示Hystrix的基本作用。前面的章节会单独讲解Hystrix框架,后面章节才会整合Spring Cloud一起使用。 准备工作 使用Spring Boot的spring-boot-starter-web项目,建立一个普通的Web项目,发布两个测试服务用于测试,控制器的代码请见代码清单6-1。 代码清单6-1: codes\06\6.2\first-hystrix-server\src\main\java\org\crazyit\cloud\MyController.java @RestController public class MyController { @GetMapping("/normalHello") public