OpenFeign配置

本文介绍了如何在Spring Boot中配置OpenFeign,包括添加依赖、配置Eureka集群、定义服务接口、Controller和接口测试。此外,还详细讲解了超时控制,如ReadTimeout和ConnectTimeout的配置,并探讨了OpenFeign的日志配置,如何调整为debug级别以显示调试日志。
摘要由CSDN通过智能技术生成

目录

OpenFeign配置

添加依赖

配置文件 

启动类

service服务接口

controller

接口测试

 超时控制

yml文件配置OpenFeign超时控制

日志配置

日志级别:

创建配置文件config:

配置yml文件


OpenFeign配置

Feign 是一个声明式 WebService 客户端。使用 Feign 能让编写Web Service 客户端更加简单。

它的使用方法是:定义一个服务接口然后在上面添加注解。

openfeign一定作用在消费者客户端

添加依赖

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

配置文件 

不需要配置openfeign,只需要配置eureka集群

server:
  port: 80

eureka:
  client:
    register-with-eureka: true
    fetch-registry: true
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka,http://eureka7003.com:7003/eureka

启动类

@EnableFeignClients
package com.qfedu;

import com.sun.org.apache.xpath.internal.operations.Or;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;

/**
 * @ClassName OrderFeignMain80
 * @Description TODO
 * @Author huocarry
 * @Date 2023/1/4 21:15
 * @Version 1.0
 **/
@SpringBootApplication
@EnableFeignClients
public class OrderFeignMain80 {
    public static void main(String[] args) {
        SpringApplication.run(OrderFeignMain80.class,args);
    }
}

service服务接口

@FeignClient(value = "MYCLOUD-PAYMENT-SERVICE"):value="服务名"

package com.qfedu.service;

import com.qfedu.entity.Payment;
import com.qfedu.result.CommonResult;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;

/**
 * @ClassName PaymentFeignService
 * @Description TODO
 * @Author huocarry
 * @Date 2023/1/5 10:04
 * @Version 1.0
 **/

@FeignClient(value = "MYCLOUD-PAYMENT-SERVICE")
public interface PaymentFeignService {

    @GetMapping("/payment/get/{id}")
    public CommonResult<Payment> getPayment(@PathVariable("id") Long id);

}

controller

package com.qfedu.controller;

import com.qfedu.entity.Payment;
import com.qfedu.result.CommonResult;
import com.qfedu.service.PaymentFeignService;
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;

/**
 * @ClassName PaymentFeignController
 * @Description TODO
 * @Author huocarry
 * @Date 2023/1/5 10:34
 * @Version 1.0
 **/
@RestController
@RequestMapping("/consumer")
public class PaymentFeignController {

    @Autowired
    private PaymentFeignService paymentFeignService;

    @GetMapping("/payment/get/{id}")
    public CommonResult<Payment> getPayment(@PathVariable("id") Long id){
        return paymentFeignService.getPayment(id);
    }
}

接口测试

 超时控制

Feign客户端默认等待1s,若服务端处理需要超过1s,导致Feign客户端不想等了,直接返回报错。

yml文件配置OpenFeign超时控制

ribbon:
  ReadTimeout: 5000
  ConnectTimeout: 5000

ReadTimeout:建立连接后从服务器读取到可用资源所用的时间

ConnectTimeout:建立连接所用的时间,适用于网络状况正常的情况下,两端连接所用的时间

日志配置

日志级别:

NONE默认的,不显示任何日志
BASIC      仅记录请求方法、URL、响应状态码以及执行时间
HEADERS除了BASIC中定义的信息之外,还有请求和响应的头信息
FULL除了HEADERS中定义的信息之外,还有请求和响应的正文及元数据

创建配置文件config:

package com.qfedu.config;

import feign.Logger;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @ClassName FeignConfig
 * @Description TODO
 * @Author huocarry
 * @Date 2023/1/5 11:39
 * @Version 1.0
 **/
@Configuration
public class FeignConfig {

    @Bean
    Logger.Level feignLoggerLevel(){
        return Logger.Level.FULL;
    }
}

配置yml文件

logging:
  level:
#    feign日志以什么级别监控哪个接口
    com.qfedu.service.PaymentFeignService: debug

这是因为 OpenFeign 的调试日志是以 debug 级别来输出的。而 Spring Boot 默认的日志级别是 info 级别。info 级别是大于 debug 级别的,所以 debug 级别的日志(OpenFeign日志)不会输出。
所以,想要输出 OpenFeign 日志信息,需要将 OpenFeign 接口的日志调试级别设置成 debug 级别。这一步在application.yml配置文件中进行。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值