查看原文
其他

Spring Cloud实战小贴士:Feign的继承特性(伪RPC模式)

2017-08-08 翟永超 程序猿DD

通过之前发布的《Spring Cloud构建微服务架构:服务消费者(Feign)》,我们已经学会如何使用Spring MVC的注解来绑定服务接口。我们几乎完全可以从服务提供方的Controller中依靠复制操作,来构建出相应的服务接口客户端,或是通过Swagger生成的API文档来编写出客户端,亦或是通过Swagger的代码生成器来生成客户端绑定。即便如此,有很多的方式来产生Feign的客户端程序,依然有很多开发者热衷于利用公共的依赖接口来连接服务提供者和服务消费者的方式。由此,Feign的继承特性就能很好的派上用处。下面,我们来详细看看如何使用Spring Cloud Feign的继承特性。

动手试一试

接下来的示例将分为三个模块:

  • 服务接口定义模块:通过Spring MVC注解定义抽象的interface服务接口

  • 服务接口实现模块:实现服务接口定义模块的interface,该模块作为服务提供者注册到eureka

  • 服务接口消费模块:服务接口定义模块的客户端实现,该模块通过注册到eureka来消费服务接口

服务接口的定义

  • 创建一个Spring Boot项目:eureka-feign-api, pom.xml的主要内容如下:

  1. <parent>

  2.    <groupId>org.springframework.boot</groupId>

  3.    <artifactId>spring-boot-starter-parent</artifactId>

  4.    <version>1.5.6.RELEASE</version>

  5.    <relativePath/>

  6. </parent>

  7. <dependencies>

  8.    <dependency>

  9.        <groupId>org.springframework.boot</groupId>

  10.        <artifactId>spring-boot-starter-web</artifactId>

  11.    </dependency>

  12. </dependencies>

  13. <dependencyManagement>

  14.    <dependencies>

  15.        <dependency>

  16.            <groupId>org.springframework.cloud</groupId>

  17.            <artifactId>spring-cloud-dependencies</artifactId>

  18.            <version>Dalston.SR2</version>

  19.            <type>pom</type>

  20.            <scope>import</scope>

  21.        </dependency>

  22.    </dependencies>

  23. </dependencyManagement>

  • 使用Spring MVC注解来定义服务接口:

  1. public interface HelloService {

  2.    @GetMapping("/hello")

  3.    String hello(@RequestParam(value = "name") String name);

  4. }

  • 完成了上述构建之后,我们使用 mvn install将该模块构建到本地的Maven仓库中。

服务接口的实现

  • 创建一个Spring Boot项目:eureka-feign-client, pom.xml的主要内容如下:

  1. <parent>

  2.    <groupId>org.springframework.boot</groupId>

  3.    <artifactId>spring-boot-starter-parent</artifactId>

  4.    <version>1.5.6.RELEASE</version>

  5.    <relativePath/>

  6. </parent>

  7. <dependencies>

  8.    <dependency>

  9.        <groupId>org.springframework.boot</groupId>

  10.        <artifactId>spring-boot-starter-web</artifactId>

  11.    </dependency>

  12.    <dependency>

  13.        <groupId>org.springframework.cloud</groupId>

  14.        <artifactId>spring-cloud-starter-eureka</artifactId>

  15.    </dependency>

  16.    <dependency>

  17.        <groupId>com.didispace</groupId>

  18.        <artifactId>eureka-feign-api</artifactId>

  19.        <version>1.0.0</version>

  20.    </dependency>

  21. </dependencies>

  22. <dependencyManagement>

  23.    <dependencies>

  24.        <dependency>

  25.            <groupId>org.springframework.cloud</groupId>

  26.            <artifactId>spring-cloud-dependencies</artifactId>

  27.            <version>Dalston.SR2</version>

  28.            <type>pom</type>

  29.            <scope>import</scope>

  30.        </dependency>

  31.    </dependencies>

  32. </dependencyManagement>

该模块需要依赖上面定义的 eureka-feign-api,将使用上述定义的 HelloService接口来实现对应的REST服务。同时依赖Eureka是为了将该服务注册到Eureka上供服务消费者发现。

  • 创建应用主类。使用 @EnableDiscoveryClient注解开启服务注册与发现,并实现 HelloService接口的REST服务:

  1. @EnableDiscoveryClient

  2. @SpringBootApplication

  3. public class Application {

  4.    @RestController

  5.    class HelloController implements HelloService {

  6.        @Override

  7.        public String hello(String name) {

  8.            return "hello " + name;

  9.        }

  10.    }

  11.    public static void main(String[] args) {

  12.        new SpringApplicationBuilder(Application.class).web(true).run(args);

  13.    }

  14. }

  • 编辑 application.properties配置内容:

  1. spring.application.name=eureka-feign-client

  2. server.port=2101

  3. eureka.client.serviceUrl.defaultZone=http://eureka.didispace.com/eureka/

配置了服务提供者的名称 eureka-feign-client,服务提供者的端口号 2101,并将该服务注册到我的公益Eureka注册中心上。启动该项目,我们可以通过访问:http://eureka.didispace.com/ ,在该页面中找到它。

服务接口的消费

  • 创建一个Spring Boot项目:eureka-feign-consumer, pom.xml的主要内容如下:

  1. <parent>

  2.    <groupId>org.springframework.boot</groupId>

  3.    <artifactId>spring-boot-starter-parent</artifactId>

  4.    <version>1.5.6.RELEASE</version>

  5.    <relativePath/>

  6. </parent>

  7. <dependencies>

  8.    <dependency>

  9.        <groupId>org.springframework.boot</groupId>

  10.        <artifactId>spring-boot-starter-web</artifactId>

  11.    </dependency>

  12.    <dependency>

  13.        <groupId>org.springframework.cloud</groupId>

  14.        <artifactId>spring-cloud-starter-eureka</artifactId>

  15.    </dependency>

  16.    <dependency>

  17.        <groupId>org.springframework.cloud</groupId>

  18.        <artifactId>spring-cloud-starter-feign</artifactId>

  19.    </dependency>

  20.    <dependency>

  21.        <groupId>com.didispace</groupId>

  22.        <artifactId>eureka-feign-api</artifactId>

  23.        <version>1.0.0</version>

  24.    </dependency>

  25. </dependencies>

  26. <dependencyManagement>

  27.    <dependencies>

  28.        <dependency>

  29.            <groupId>org.springframework.cloud</groupId>

  30.            <artifactId>spring-cloud-dependencies</artifactId>

  31.            <version>Dalston.SR2</version>

  32.            <type>pom</type>

  33.            <scope>import</scope>

  34.        </dependency>

  35.    </dependencies>

  36. </dependencyManagement>

该模块较服务提供者的依赖增加了Feign的依赖,因为这里将使用Feign来绑定服务接口的客户端。下面我们将使用Feign的继承特性来轻松的构建Feign客户端。

  • 创建应用主类。使用 @EnableDiscoveryClient注解开启服务注册与发现,并通过 @FeignClient注解来声明服务绑定客户端:

  1. @EnableFeignClients

  2. @EnableDiscoveryClient

  3. @SpringBootApplication

  4. public class Application {

  5.    @FeignClient("eureka-feign-client")

  6.    interface HelloServiceClient extends HelloService {

  7.    }

  8.    @RestController

  9.    class TestController {

  10.        @Autowired

  11.        private HelloServiceClient helloServiceClient;

  12.        @GetMapping("/test")

  13.        public String test(String name) {

  14.            return helloServiceClient.hello(name);

  15.        }

  16.    }

  17.    public static void main(String[] args) {

  18.        new SpringApplicationBuilder(Application.class).web(true).run(args);

  19.    }

  20. }

从上述代码中我们可以看到,利用Feign的继承特性, @FeignClient注解只需要通过声明一个接口来继承在API模块中定义的公共interface就能产生服务接口的Feign客户端了。而 @FeignClient中的值需要填写该服务的具体服务名(服务提供者的 spring.application.name配置值)。

  • 编辑服务消费者的 application.properties配置内容,将服务消费者注册到eureka上来消费服务:

  1. spring.application.name=eureka-feign-consumer

  2. server.port=2102

  3. eureka.client.serviceUrl.defaultZone=http://eureka.didispace.com/eureka/

  • 启动 eureka-feign-consumer之后,我们可以通过访问:http://localhost:2102/test ,来实验 eureka-feign-consumer对 eureka-feign-client接口的调用。

本文示例

  • 码云:https://gitee.com/didispace/SpringCloud-Learning

  • GitHub:https://github.com/dyc87112/SpringCloud-Learning

程序清单:

  • eureka-feign-api:服务接口定义

  • eureka-feign-client:服务接口实现的提供方

  • eureka-feign-consumer:服务接口的调用方

欢迎使用公益Eureka注册中心调试您的Spring Cloud程序:【公益】开放一台Eureka注册中心给各位Spring Cloud爱好者

更多Spring Cloud内容请持续关注我的博客更新或在《Spring Cloud微服务实战》中获取。

相关阅读


长按指纹

一键关注

您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存