Spring Cloud构建微服务架构——服务注册与发现
Posted 学无止境
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Cloud构建微服务架构——服务注册与发现相关的知识,希望对你有一定的参考价值。
Spring Cloud简介Spring Cloud是一个基于Spring Boot实现的云应用开发工具,它为基于JVM的云应用开发中的配置管理、服务发现、断路器、智能路由、微代理、控制总线、全局锁、决策竞选、分布式会话和集群状态管理等操作提供了一种简单的开发方式。 Spring Cloud包含了多个子项目(针对分布式系统中涉及的多个不同开源产品),比如:Spring Cloud Config、Spring Cloud Netflix、Spring Cloud CloudFoundry、Spring Cloud AWS、Spring Cloud Security、Spring Cloud Commons、Spring Cloud Zookeeper、Spring Cloud CLI等项目。 微服务架构“微服务架构”在这几年非常的火热,以至于关于微服务架构相关的产品社区也变得越来越活跃(比如:netflix、dubbo),Spring Cloud也因Spring社区的强大知名度和影响力也被广大架构师与开发者备受关注。 那么什么是“微服务架构”呢?简单的说,微服务架构就是将一个完整的应用从数据存储开始垂直拆分成多个不同的服务,每个服务都能独立部署、独立维护、独立扩展,服务与服务间通过诸如RESTful API的方式互相调用。 对于“微服务架构”,大家在互联网可以搜索到很多相关的介绍和研究文章来进行学习和了解。也可以阅读始祖Martin Fowler的《Microservices》,本文不做更多的介绍和描述。 服务注册与发现在简单介绍了Spring Cloud和微服务架构之后,下面回归本文的主旨内容,如何使用Spring Cloud搭建服务注册与发现模块。 这里我们会用到Spring Cloud Netflix,该项目是Spring Cloud的子项目之一,主要内容是对Netflix公司一系列开源产品的包装,它为Spring Boot应用提供了自配置的Netflix OSS整合。通过一些简单的注解,开发者就可以快速的在应用中配置一下常用模块并构建庞大的分布式系统。它主要提供的模块包括:服务发现(Eureka),断路器(Hystrix),智能路有(Zuul),客户端负载均衡(Ribbon)等。 所以,我们这里的核心内容就是服务发现模块:Eureka。下面我们动手来做一些尝试。 创建“服务注册中心”创建一个基础的Spring Boot工程,并在 org.springframework.boot spring-boot-starter-parent 1.3.5.RELEASE org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-starter-eureka-server org.springframework.cloud spring-cloud-dependencies Brixton.RELEASE pom import 通过 @[email protected] class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); }} 在默认设置下,该服务注册中心也会将自己作为客户端来尝试注册它自己,所以我们需要禁用它的客户端注册行为,只需要在 server.port=1111eureka.client.register-with-eureka=false eureka.client.fetch-registry=false eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/ 为了与后续要进行注册的服务区分,这里将服务注册中心的端口通过 启动工程后,访问:http://localhost:1111/ 可以看到下面的页面,其中还没有发现任何服务 该工程可参见:Chapter9-1-1/eureka-server 创建“服务提供方”下面我们创建提供服务的客户端,并向服务注册中心注册自己。 假设我们有一个提供计算功能的微服务模块,我们实现一个RESTful API,通过传入两个参数a和b,最后返回a + b的结果。 首先,创建一个基本的Spring Boot应用,在 org.springframework.boot spring-boot-starter-parent 1.3.5.RELEASE org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-starter-eureka org.springframework.cloud spring-cloud-dependencies Brixton.RELEASE pomimport 其次,实现 @RestControllerpublic class ComputeController { private final Logger logger = Logger.getLogger(getClass()); @Autowired private DiscoveryClient client; @RequestMapping(value = ‘/add‘ ,method = RequestMethod.GET) public Integer add(@RequestParam Integer a, @RequestParam Integer b) { ServiceInstance instance = client.getLocalServiceInstance(); Integer r = a + b; logger.info(‘/add, host:‘ + instance.getHost() + ‘, service_id:‘ + instance.getServiceId() + ‘, result:‘ + r); return r; }} 最后在主类中通过加上 @[email protected] class ComputeServiceApplication { public static void main(String[] args) { new SpringApplicationBuilder(ComputeServiceApplication.class).web(true).run(args); }} 我们在完成了服务内容的实现之后,再继续对 spring.application.name=compute-serviceserver.port=2222eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/ 通过
为了在本机上测试区分服务提供方和服务注册中心,使用 启动该工程后,再次访问:http://localhost:1111/ 可以看到,我们定义的服务被注册了。 该工程可参见:Chapter9-1-1/compute-service 【转载请注明出处】:http://blog.didispace.com/springcloud1/ |
以上是关于Spring Cloud构建微服务架构——服务注册与发现的主要内容,如果未能解决你的问题,请参考以下文章