美文网首页
SpringCloud简单案例

SpringCloud简单案例

作者: 小明同学呀呀呀 | 来源:发表于2020-01-16 14:21 被阅读0次

    一、服务注册与发现

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

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

    创建“服务注册中心”

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

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

    image

    image.png

    image

    image.png

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

    image

    image.png

    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;
    import org.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

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

    image

    image.png

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

    创建springBoot项目同上

    查看pom.xml文件

    <?xml version="1.0"encoding="UTF-8"?>4.0.0org.springframework.bootspring-boot-starter-parent2.1.3.RELEASEcom.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

    image

    image.png

    然后查看http://localhost:8760

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

    image

    image.png

    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.RELEASEcom.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); }}

    再次查看服务

    image

    image.png

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

    image

    作者:佛祖0

    链接:

    简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

    相关文章

      网友评论

          本文标题:SpringCloud简单案例

          本文链接:https://www.haomeiwen.com/subject/qvzmfctx.html