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

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

  • 服务消费者与提供者通过feign通信的前置条件
  • 搭建服务提供者与消费者的通信方式
    • 搭建服务提供者
    • 搭建服务的消费者
  • feign与load balance(负载均衡)

服务消费者与提供者通过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依赖


    4.0.0
    bygones-consumer
    1.0.0-SNAPSHOT
    jar

    
        com.bygones
        bygones-dependencies
        1.0.0-SNAPSHOST
        ../bygones-dependencies/pom.xml
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.springframework.boot
            spring-boot-starter-actuator
        

        
        
            com.alibaba.cloud
            spring-cloud-starter-alibaba-nacos-discovery
        

        
        
            org.springframework.cloud
            spring-cloud-starter-openfeign
        
    

在项目的启动类中开启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 中配置一个工程启动多个实例

你可能感兴趣的:(SpringCloud,spring,Springboot,springcloud,java)