@FeignClient注解

@FeignClient注解(使用该注解实现各个工程的调用)

  • 该注解的属性:
    name:指定FeignClient的名称,如果项目使用了Ribbon,name属性会作为微服务的名称,用于服务发现
    url: url一般用于调试,可以手动指定@FeignClient调用的地址
    decode404:当发生http 404错误时,如果该字段位true,会调用decoder进行解码,否则抛出FeignException
    configuration: Feign配置类,可以自定义Feign的Encoder、Decoder、LogLevel、Contract
    fallback: 定义容错的处理类,当调用远程接口失败或超时时,会调用对应接口的容错逻辑,fallback指定的类必须实现@FeignClient标记的接口
    fallbackFactory: 工厂类,用于生成fallback类示例,通过这个属性我们可以实现每个接口通用的容错逻辑,减少重复的代码
    path: 定义当前FeignClient的统一前缀

  • 使用该注解:
    1、首先在启动类上加上@@EnableFeignClients注解才能够有用
    @FeignClient注解_第1张图片
    2、开始使用注解调用其他工程

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import java.util.Map;
/**
*其中url:为调用其他工程的地址
**/
@Component
@FeignClient(name = "BoMcApprovalFrom2", url = "http://localhost:8009/reninsight")
public interface BoMcApprovalFrom2 {
    @RequestMapping(method = RequestMethod.GET, value = "/zxxxDaping/newBilling")
    Map approvalFrom();
}

3、开始调用
@FeignClient注解_第2张图片

你可能感兴趣的:(spring,cloud,java,spring,boot)