开发者

SpringBoot使用Feign进行服务间通信的实现示例代码

开发者 https://www.devze.com 2024-01-21 10:18 出处:网络 作者: wx59bcc77095d22
目录一、前言二、SpringBoot集成1.添加依赖2.启用Feign客户端3.定义Fe编程客栈ign客户端接口4.定义目标控制层接口5.创建Feign测试控制层6.测试一、前言
目录
  • 一、前言
  • 二、SpringBoot集成
    • 1.添加依赖
    • 2.启用Feign客户端
    • 3.定义Fe编程客栈ign客户端接口
    • 4.定义目标控制层接口
    • 5.创建Feign测试控制层
    • 6.测试

一、前言

在分布式系统中,服务间通信是非常常见的情况。Feign是一个开源的Java HTTP客户端,可以帮助我们在SpringBoot应用中快速构建和使用HTTP客户端,方便实现服务间的通信。与其他HTTP客户端相比,Feign具有简化 HTTP API定义、支持多种HTTP请求方法、支持请求和响应的压缩、支持请求和响应的日志记录、支持多种负载均衡器、支持自定义拦截器和错误处理器等特点。

二、SpringBoot集成

1.添加依赖

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-openfeign</artifactId>
    <version>3.1.5</version>
</dependency>

2.启用Feign客户端

我们需要在启动类上添加@EnableFeignClients注解,启用Feign客户端。

package com.example.nettydemo;

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


@SpringBootApplication
@EnableFeignClients
public class NettyDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(NettyDemoApplication.class, args);
    }
}

3.定义Feign客户端接口

@FeignClient注解里面的url指定需要请求的URL地址,name指定客户端的名称。

package com.example.nettydemo.feign;

import com.example.nettydemo.entity.User;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;

/**
 * @author qx
 * @date 2023/12/28
 * @des Feign客户端
 */
@FeignClient(url = "http://127.0.0.1:8090/user", name = "user")
public interface UserFeignClient {


    @GetMapping("/{id}")
    User selecjstUserById(@PathVariable("id") Long id);

}

4.定义目标控制层接口

package com.example.nettydemo.http://www.devze.comcontroller;

import com.example.nettydemo.entity.User;
import com.example.nettydemo.service.UserService;
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;

/**
 * @author qx
 * @date 2023/12/28
 * @des
 */
@RestController
@RequestMapping("/user")
public class UserController {

    @Autowired
    private UserService userService;


    @GetMapping("/{id}")
    public User selectUserById(@PathVariable("id") Long id) {
        return userService.get编程客栈UserById(id);
    }
}

5.创建Feign测试控制层

package com.example.nettydemo.controller;

import com.example.nettydemo.entity.User;
import com.example.nettydemo.feign.UserFeignClient;
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;

/**
 * @author qx
 * @date 2023/12/28
 * @des Feign测试
 */
@RestController
@Reques编程客栈tMapping("/userFeign")
public class UserFeignController {

    @Autowired
    private UserFeignClient userFeignClient;

    @GetMapping("/{id}")
    public User getUserInfo(@PathVariable("id") Long id) {
        return userFeignClient.selectUserById(id);
    }
}

6.测试

我们先测试目标请求接口是否正确。

SpringBoot使用Feign进行服务间通信的实现示例代码

然后我们再使用Feign的方式请求接口的方式进行测试。

SpringBoot使用Feign进行服务间通信的实现示例代码

这样我们使用Feign方式请求,成功请求目的地址获取到了一样的数据。

到此这篇关于SpringBoot使用Feign进行服务间通信的实现示例代码的文章就介绍到这了,更多相关SpringBoot Feign服务间通信 内容请搜索编程客栈(www.devze.com)以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程客栈(www.devze.com)!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号