Spring Cloud Netflix架构浅析(小结)
最近接触微服务这块的东西,对这方面有了一些了解,拿出来和大家分享一下。
1. 微服务框架spring boot+spring cloud
spring cloud是基于spring boot的一整套实现微服务的框架,可以说,spring boot作为框架,spring cloud作为微服务,一起构成了一种不可忽视的、新生的框架体系。它提供了微服务开发所需的配置管理、服务发现、断路器、智能路由、微代理、控制总线、全局锁、决策竞选、分布式会话和集群状态管理等组件,方便易用。spring cloud包含了非常多的子框架,其中,spring cloud netflix是其中一套框架,它主要提供的模块包括:服务发现、断路器和监控、智能路由、客户端负载均衡等。
特性
- eureka实例可以注册和发现使用spring管理的bean
- 嵌入式eureka服务器可以用声明式的java配置创建
- hystrix客户端可以用简单的注解驱动
- java配置可以启用嵌入的hystrix指示面板
- 客户端负载均衡
2. spring cloud netflix组件以及部署
(1)eureka,服务注册和发现,它提供了一个服务注册中心、服务发现的客户端,还有一个方便的查看所有注册的服务的界面。 所有的服务使用eureka的服务发现客户端来将自己注册到eureka的服务器上。
(2)zuul,网关,所有的客户端请求通过这个网关访问后台的服务。他可以使用一定的路由配置来判断某一个url由哪个服务来处理。并从eureka获取注册的服务来转发请求。
(3)ribbon,即负载均衡,zuul网关将一个请求发送给某一个服务的应用的时候,如果一个服务启动了多个实例,就会通过ribbon来通过一定的负载均衡策略来发送给某一个服务实例。
(4)feign,服务客户端,服务之间如果需要相互访问,可以使用resttemplate,也可以使用feign客户端访问。它默认会使用ribbon来实现负载均衡。
(5)hystrix,监控和断路器。我们只需要在服务接口上添加hystrix标签,就可以实现对这个接口的监控和断路器功能。
(6)hystrix dashboard,监控面板,他提供了一个界面,可以监控各个服务上的服务调用所消耗的时间等。
(7)turbine,监控聚合,使用hystrix监控,我们需要打开每一个服务实例的监控信息来查看。而turbine可以帮助我们把所有的服务实例的监控信息聚合到一个地方统一查看。
3. spring cloud netflix组件开发
可以参考其中文文档:
(1)服务注册与监控中心:
@springbootapplication @enableeurekaserver @enablehystrixdashboard public class applicationregistry { public static void main(string[] args) { new springapplicationbuilder(application.class).web(true).run(args); } }
这里使用spring boot标签的 @springbootapplication 说明当前的应用是一个spring boot应用。这样我就可以直接用main函数在ide里面启动这个应用,也可以打包后用命令行启动。当然也可以把打包的war包用tomcat之类的服务器启动。 使用标签 @enableeurekaserver ,就能在启动过程中启动eureka服务注册中心的组件。它会监听一个端口,默认是8761,来接收服务注册。并提供一个web页面,打开以后,可以看到注册的服务。 添加 @enablehystrixdashboard 就会提供一个监控的页面,我们可以在上面输入要监控的服务的地址,就可以查看启用了hystrix监控的接口的调用情况。 当然,为了使用上面的组件,我们需要在maven的pom文件里添加相应的依赖,比如使用 spring-boot-starter-parent ,依赖 spring-cloud-starter-eureka-server 和 spring-cloud-starter-hystrix-dashboard 等。
(2)服务间调用:
两种方式可以进行服务调用,resttemplate和feignclient。不管是什么方式,他都是通过rest接口调用服务的http接口,参数和结果默认都是通过jackson序列化和反序列化。因为spring mvc的restcontroller定义的接口,返回的数据都是通过jackson序列化成json数据。
第一种:resttemplate,只需要定义一个resttemplate的bean,设置成 loadbalanced 即可:
@configuration public class somecloudconfiguration { @loadbalanced @bean resttemplate resttemplate() { return new resttemplate(); } }
这样我们就可以在需要用的地方注入这个bean使用:
public class someserviceclass { @autowired private resttemplate resttemplate; public string getuserbyid(long userid) { userdto results = resttemplate.getforobject("http://users/getuserdetail/" + userid, userdto.class); return results; } }
其中, users 是服务id,ribbon会从服务实例列表获得这个服务的一个实例,发送请求,并获得结果。对象 userdto 需要序列号,它的反序列号会自动完成。
第二种:feignclient
@feignclient(value = "users", path = "/users") public interface usercompositeservice { @requestmapping(value = "/getuserdetail/{id}", method = requestmethod.get, produces = mediatype.application_json_value) userdto getuserbyid(@pathvariable long id); }
我们只需要使用 @feignclient 定义一个借口,spring cloud feign会帮我们生成一个它的实现,从相应的users服务获取数据。 其中, @feignclient(value = "users", path = "/users/getuserdetail") 里面的value是服务id,path是这一组接口的path前缀。 在下面的方法定义里,就好像设置spring mvc的接口一样,对于这个方法,它对应的url是 /users/getuserdetail/{id} 。 然后,在使用它的时候,就像注入一个一般的服务一样注入后使用即可:
public class someotherserviceclass { @autowired private usercompositeservice userservice; public void dosomething() { // ..... userdto results = userservice.getuserbyid(userid); // other operation... } }
(3)断路器:
//断路器:为了解决当某个方法调用失败的时候,调用后备方法来替代失败的方法,已达到容错/阻止级联错误的功能 //fallbackmethod指定后备方法 @hystrixcommand(fallbackmethod = "dostudentfallback") @requestmapping(value = "dostudent",method = requestmethod.get) public string dostudent(){ return "your name:secret,your age:secret!"; } public string dostudentfallback(){ return "your name:feifei,your age:26!"; }
其中,使用@enablecircuitbreaker来启用断路器支持,spring cloud提供了一个控制台来监控断路器的运行情况,通过@enablehystrixdashboard注解开启。
以上是简单的一些对spring cloud netflix组件的介绍。希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Spring Cloud Netflix架构浅析(小结)
-
详解spring cloud构建微服务架构的网关(API GateWay)
-
Spring Cloud微服务架构的构建:分布式配置中心(加密解密功能)
-
Spring Cloud Netflix架构浅析(小结)
-
基于Spring Cloud Netflix的TCC柔性事务和EDA事件驱动示例
-
微服务架构下使用Spring Cloud Zuul作为网关将多个微服务整合到一个Swagger服务上
-
漫谈微服务架构:什么是Spring Cloud,为何要选择Spring Cloud
-
Spring-Cloud-Netflix-Eureka注册中心
-
第1章 Spring Cloud 构建微服务架构(一)服务注册与发现
-
Spring Cloud 微服务项目实现总架构一