欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

搭建SpringCloudAlibaba开发环境之服务消费者与提供者通过feign通信

程序员文章站 2022-05-31 19:56:24
...

服务消费者与提供者通过feign通信的前置条件

服务的提供者与消费者需提前注册到服务的注册与发现中心
下面的链接介绍了如何将服务注册到服务注册与发现中心

搭建SpringCloudAlibaba开发环境之服务注册与发现中心nacos

搭建服务提供者与消费者的通信方式

搭建服务提供者

服务的提供者

import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ProviderController {

    @Value("${server.port}")
    private String port;

    @GetMapping("consumer-access-provider/{message}") // 此处的mapping与feign接口中的mapping保持一致
    public String consumerAccessProvider(@PathVariable String message){
        return String.format("服务消费者通过feign的方式访问服务提供者,服务提供者的PORT为:%s,消费者向服务提供者传递的信息为:%s",port,message);
    }
}

搭建服务的消费者

加入openfeign依赖

<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>
    <artifactId>bygones-consumer</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>com.bygones</groupId>
        <artifactId>bygones-dependencies</artifactId>
        <version>1.0.0-SNAPSHOST</version>
        <relativePath>../bygones-dependencies/pom.xml</relativePath>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

        <!-- nacos discovery-->
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
        </dependency>

        <!--open feign-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
    </dependencies>
</project>

在项目的启动类中开启feign功能

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients // 开启feign功能
public class ConsumerApplication {
    public static void main(String[] args) {
        SpringApplication.run(ConsumerApplication.class, args);
    }
}

编写feign接口,访问服务的提供者

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;

/**
 * feign接口
 * (1) 通过FeignClient指向服务的提供者
 * (2) 通过与提供者相同的mapping映射方式指向提供者的方法
 */
@FeignClient("provider") // 指向服务提供者的application.name
public interface AccessProviderService {
    @GetMapping("consumer-access-provider/{message}") // 通过mapping去映射服务提供者的方法, 所有此处的mapping必须相同
    String consumerAccessProvider(@PathVariable("message") String message); // 消费者中的方法名可以不与提供者中的方法名相同
}

feign与load balance(负载均衡)

feign 整合了ribbon,所以支持负载均衡

实现方式
修改服务提供者的端口,启动多个服务提供者即可
服务的消费者不用作出改动

如何在 IntelliJ IDEA 中配置一个工程启动多个实例