目录
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配置文件中进行。