前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >SpringCloud 简单案例

SpringCloud 简单案例

作者头像
如来
发布2020-07-15 11:05:44
8090
发布2020-07-15 11:05:44
举报
文章被收录于专栏:如来的java学习如来的java学习

一、服务注册与发现

这里会用到Spring Cloud Netflix,该项目是Spring Cloud的子项目之一,主要内容是对Netflix公司一系列开源产品的包装,它为Spring Boot应用提供了自配置的Netflix OSS整合。通过一些简单的注解,开发者就可以快速的在应用中配置一下常用模块并构建庞大的分布式系统。它主要提供的模块包括:服务发现(Eureka),断路器(Hystrix),智能路由(Zuul),客户端负载均衡(Ribbon)等。

这里的核心内容是服务发现模块:Eureka

创建“服务注册中心”

1.创建基于web的Maven项目(springcloud)

2.创建服务注册中心。在springcloud项目中创建SpringBoot项目(springboot):

勾选Cloud Discovery–>Eureka server。以方便导包

3编写springboot项目

3.1查看pom.xml文件

<?xml version="1.0"encoding="UTF-8"?>4.0.0org.springframework.bootspring-boot-starter-parent2.1.3.RELEASE<!-- lookup parent from repository -->com.handspringclouddemo0.0.1-SNAPSHOTspringclouddemoDemo project for Spring Boot1.8Greenwich.RELEASEorg.springframework.cloudspring-cloud-starter-netflix-eureka-serverorg.springframework.bootspring-boot-starter-testtestorg.springframework.cloudspring-cloud-dependencies${spring-cloud.version}pomimportorg.springframework.bootspring-boot-maven-pluginspring-milestonesSpring Milestoneshttps://repo.spring.io/milestone

4在启动类上加上注解 如下

通过@EnableEurekaServer注解启动一个服务注册中心提供给其他应用进行对话。这一步非常的简单,只需要在一个普通的Spring Boot应用中添加这个注解就能开启此功能,比如下面的例子:

packagecom.hand;importorg.springframework.boot.SpringApplication;importorg.springframework.boot.autoconfigure.SpringBootApplication;importorg.springframework.cloud.netflix.eureka.server.EnableEurekaServer;@SpringBootApplication@EnableEurekaServerpublicclassSpringclouddemoApplication{publicstaticvoidmain(String[] args){ SpringApplication.run(SpringclouddemoApplication.class, args); }}

5 修改application.yml文件

yml文件的好处,天然的树状结构,一目了然

---#端口号server: port: 8760eureka: instance: hostname: localhost client:# eureka.client.registerWithEureka :表示是否将自己注册到Eureka Server,默认为true。# 由于当前这个应用就是Eureka Server,故而设为falseregister-with-eureka:false# eureka.client.fetchRegistry :表示是否从Eureka Server获取注册信息,默认为true。因为这是一个单点的Eureka Server,# 不需要同步其他的Eureka Server节点的数据,故而设为false。fetch-registry:falseservice-url:# eureka.client.serviceUrl.defaultZone :设置与Eureka Server交互的地址,#查询服务和注册服务都需要依赖这个地址。默认是defaultZone: http://{eureka.instance.hostname}: {server.port}/eureka/

6 启动项目后访问

http://localhost:8760

可以看到下面的页面,其中还没有发现任何服务:

7.搭建服务端(生产者)

创建springBoot项目同上

查看pom.xml文件

<?xml version="1.0"encoding="UTF-8"?>4.0.0org.springframework.bootspring-boot-starter-parent2.1.3.RELEASE<!-- lookup parent from repository -->com.handproducer0.0.1-SNAPSHOTproducerDemo project for Spring Boot1.8Greenwich.RELEASEorg.springframework.cloudspring-cloud-starter-netflix-eureka-serverorg.springframework.bootspring-boot-starter-testtestorg.springframework.cloudspring-cloud-dependencies${spring-cloud.version}pomimportorg.springframework.bootspring-boot-maven-pluginspring-milestonesSpring Milestoneshttps://repo.spring.io/milestone

8修改application.yml文件

注:端口不能与上面的相同。这里的服务name:service-hi 可以根据自己情况定义。

---server: port:8762eureka: client: service-url: defaultZone: http://localhost:8760/eureka/spring: application: name: service-producer

9 编写启动类

packagecom.hand.producer;importorg.springframework.beans.factory.annotation.Value;importorg.springframework.boot.SpringApplication;importorg.springframework.boot.autoconfigure.SpringBootApplication;importorg.springframework.cloud.netflix.eureka.EnableEurekaClient;importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RequestParam;importorg.springframework.web.bind.annotation.RestController;@SpringBootApplication@EnableEurekaClient@RestControllerpublicclassProducerApplication{publicstaticvoidmain(String[] args){ SpringApplication.run(ProducerApplication.class, args); }@Value("${server.port}") String port;@RequestMapping("/hi")publicStringhome(@RequestParam String name){return"hi "+ name +",i am from port:"+ port; }}

运行服务

http://localhost:8761/hi?name=xiong.zhang@hand-china.com

然后查看http://localhost:8760

可以看到,我们定义的服务被注册了。如下图所示:

9.创建消费者

9.1 创建消费者modul,流程如上述工程创建流程。

9.2查看pom.xml文件

<?xml version="1.0"encoding="UTF-8"?>4.0.0org.springframework.bootspring-boot-starter-parent2.1.3.RELEASE<!-- lookup parent from repository -->com.handcustomer0.0.1-SNAPSHOTcustomerDemo project for Spring Boot1.8Greenwich.RELEASEorg.springframework.cloudspring-cloud-starter-netflix-eureka-serverorg.springframework.bootspring-boot-starter-testtestorg.springframework.cloudspring-cloud-dependencies${spring-cloud.version}pomimportorg.springframework.bootspring-boot-maven-pluginspring-milestonesSpring Milestoneshttps://repo.spring.io/milestone

10 yml配置

---server: port:8763eureka: client: service-url: defaultZone: http://localhost:8760/eureka/spring: application: name: service-customerfeign: hystrix: enabled :true

11 编写启动类

@EnableDiscoveryClient表明标注类是消费者,加入restTemplate以消费相关的服务

packagecom.hand.customer;importorg.springframework.boot.SpringApplication;importorg.springframework.boot.autoconfigure.SpringBootApplication;importorg.springframework.cloud.client.discovery.EnableDiscoveryClient;importorg.springframework.cloud.client.loadbalancer.LoadBalanced;importorg.springframework.context.annotation.Bean;importorg.springframework.web.client.RestTemplate;@SpringBootApplication@EnableDiscoveryClientpublicclassCustomerApplication{publicstaticvoidmain(String[] args){ SpringApplication.run(CustomerApplication.class, args); }@Bean@LoadBalancedRestTemplaterestTemplate(){returnnewRestTemplate(); }}

12 .创建service和controller

12.1 service层

packagecom.hand.customer.controller;importcom.hand.customer.service.HelloService;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RequestParam;importorg.springframework.web.bind.annotation.RestController;packagecom.hand.customer.service;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.stereotype.Service;importorg.springframework.web.client.RestTemplate;/**

* Created with IntelliJ IDEA.

* Author: Patrick

* Date: 2019/2/25

* Time: 23:12

* Description:

*/@ServicepublicclassHelloService{@AutowiredRestTemplate restTemplate;publicStringhiService(String name){returnrestTemplate.getForObject("http://SERVICE-PRODUCER/hi?name="+ name, String.class); }}

12.2 controller层

packagecom.hand.customer.controller;importcom.hand.customer.service.HelloService;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RequestParam;importorg.springframework.web.bind.annotation.RestController;/**

* Created with IntelliJ IDEA.

* Author: Patrick

* Date: 2019/2/25

* Time: 23:38

* Description:

*/@RestControllerpublic class HelloControler { @AutowiredHelloService helloService; @RequestMapping(value="/hi") public String hi(@RequestParam String name) {returnhelloService.hiService(name); }}

再次查看服务

在浏览器中输入http://localhost:8763/hi?name=admin

作者:佛祖0

出处:https://cloud.tencent.com/developer/article/1662045

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
微服务引擎 TSE
微服务引擎(Tencent Cloud Service Engine)提供开箱即用的云上全场景微服务解决方案。支持开源增强的云原生注册配置中心(Zookeeper、Nacos 和 Apollo),北极星网格(腾讯自研并开源的 PolarisMesh)、云原生 API 网关(Kong)以及微服务应用托管的弹性微服务平台。微服务引擎完全兼容开源版本的使用方式,在功能、可用性和可运维性等多个方面进行增强。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档