美文网首页
SpringCloud : 服务提供与调用 Eureka【Fin

SpringCloud : 服务提供与调用 Eureka【Fin

作者: 你丫的才程序员 | 来源:发表于2019-01-31 13:53 被阅读66次

    写在前面

    这篇文章主要介绍下如何使用Eureka服务注册中心,搭建一个简单的服务端注册服务,客户端去调用服务使用的案例 。
    案例中有三个角色:服务注册中心、服务提供者、服务消费者。
    流程如下:
    1.启动注册中心
    2.服务提供者生产服务并注册到服务中心
    3.消费者从服务中心中获取服务并执行

    服务提供者

    我们假设服务提供者有一个 hello() 方法,可以根据传入的参数,提供输出 “hello xxx + 当前时间” 的服务。

    1. pom中添加依赖
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>2.1.2.RELEASE</version>
            <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>com.ooliuyue</groupId>
        <artifactId>eureka-producer</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <name>eureka-producer</name>
        <description>Demo project for Spring Boot</description>
    
        <properties>
            <java.version>1.8</java.version>
            <spring-cloud.version>Finchley.RC1</spring-cloud.version>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>    </dependencies>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.springframework.cloud</groupId>
                    <artifactId>spring-cloud-dependencies</artifactId>
                    <version>${spring-cloud.version}</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
        </build>
    
        <repositories>
            <repository>
                <id>spring-milestones</id>
                <name>Spring Milestones</name>
                <url>https://repo.spring.io/milestone</url>
            </repository>
        </repositories>
    
    </project>
    
    
    1. 配置文件
      application.yml 配置如下
    spring:
      application:
        name: eureka-producer
    eureka:
      client:
        service-url:
          defaultZone: http://localhost:8000/eureka/ 
    server:
      port: 9000
    

    通过spring.application.name属性,我们可以指定微服务的名称后续在调用的时候只需要使用该名称就可以进行服务的访问。eureka.client.serviceUrl.defaultZone属性对应服务注册中心的配置内容,指定服务注册中心的位置。为了在本机上测试区分服务提供方和服务注册中心,使用server.port属性设置不同的端口。

    1. 启动类
      保持默认生成的即可, Finchley.RC1 这个版本的 Spring Cloud 已经无需添加@EnableDiscoveryClient注解了。
    package com.ooliuyue.eurekaproducer;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class EurekaProducerApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(EurekaProducerApplication.class, args);
        }
    
    }
    
    1. Controller
    package com.ooliuyue.eurekaproducer.controller;
    
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestParam;
    import org.springframework.web.bind.annotation.RestController;
    
    import java.util.Date;
    
    /**
     * @Auther: ly
     * @Date: 2019/1/23 17:01
     */
    
    @RestController
    @RequestMapping("/hello")
    public class HelloController {
    
        @GetMapping("/")
        public String hello(@RequestParam String name) {
            return "Hello, " + name + " " + new Date();
        }
    
    }
    

    启动工程后,就可以在注册中心 Eureka 的页面看到 EUERKA-PRODUCER 服务。

    http://localhost:8000
    我们模拟一个请求试一下 Producer 能否正常工作
    http://localhost:9000/hello/?name=ooliuyue

    Hello, ooliuyue Thu Jan 31 11:53:16 CST 2019

    OK, 直接访问时没有问题的,到此服务提供者配置就完成了。

    服务消费者

    在实际工作中,我们基本上都是使用 Feign 来完成调用的。我们通过一个例子来展现 Feign 如何方便的声明对 eureka-producer 服务的定义和调用.。

    1. 创建一个基本的 Spring Boot 应用,命名为eureka-producer,在 pom.xml 中添加如下配置:
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-openfeign</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    
    1. 启动类
      在启动类上加上@EnableFeignClients
    package com.ooliuyue.eurekaconsumer;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.openfeign.EnableFeignClients;
    import org.springframework.context.annotation.Bean;
    import org.springframework.web.client.RestTemplate;
    
    @EnableFeignClients
    @SpringBootApplication
    public class EurekaConsumerApplication {
        public static void main(String[] args) {
            SpringApplication.run(EurekaConsumerApplication.class, args);
        }
    
    }
    
    1. Feign调用的实现
      创建一个 Feign 的客户端接口定义。使用@FeignClient注解来指定这个接口所要调用的服务名称,接口中定义的各个函数使用 Spring MVC 的注解就可以来绑定服务提供方的 REST 接口,比如下面就是绑定 eureka-producer 服务的/hello/接口的例子:
    package com.ooliuyue.eurekaconsumer.controller;
    
    import org.springframework.cloud.openfeign.FeignClient;
    import org.springframework.stereotype.Component;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RequestParam;
    
    /**
     * @Auther: ly
     * @Date: 2019/1/25 10:40
     */
    
    @FeignClient(name = "eureka-producer")
    @Component
    public interface HelloRemote {
    
        @GetMapping("/hello/")
        String hello(@RequestParam(value = "name") String name);
    
    }
    

    此类中的方法和远程服务中 Contoller 中的方法名和参数需保持一致。

    1. Controller
      将 HelloRemote 注入到 controller 层,像普通方法一样去调用即可
    package com.ooliuyue.eurekaconsumer.controller;
    
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    /**
     * @Auther: ly
     * @Date: 2019/1/25 10:42
     */
    
    @RequestMapping("/hello")
    @RestController
    public class Hello2Controller {
    
        @Autowired
        HelloRemote helloRemote;
    
        @GetMapping("/{name}")
        public String index(@PathVariable("name") String name) {
            return helloRemote.hello(name + "!");
        }
    
    }
    

    启动工程后,在注册中心 Eureka页面可以看到 服务都已经启动。


    访问 http://localhost:9001/hello/ooliuyue 以验证是否调用成功

    Hello, ooliuyue! Thu Jan 31 13:52:43 CST 2019

    git地址
    码云

    相关文章

      网友评论

          本文标题:SpringCloud : 服务提供与调用 Eureka【Fin

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