springboot-starter 整合feignClient

项目结构图

引入依赖

java 复制代码
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.2.11</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>org.example</groupId>
    <artifactId>feignClient-starter</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>feignClient-starter</name>
    <description>feignClient-starter</description>
    <properties>
        <java.version>17</java.version>
        <spring-cloud.version>2023.0.3</spring-cloud.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

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

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>

    </dependencies>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

feignClient接口

java 复制代码
package org.example.feignclientstarter.feign;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
@FeignClient(value = "user-server")
public interface TestFeign {
    @GetMapping("/getUser")
    Object getUser(String str);
}

自动装配配置类

java 复制代码
package org.example.feignclientstarter.config;
import org.example.feignclientstarter.feign.TestFeign;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.cloud.openfeign.FeignAutoConfiguration;
import org.springframework.context.ApplicationContext;
import org.springframework.context.EnvironmentAware;
import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
import org.springframework.core.env.StandardEnvironment;
import org.springframework.core.type.AnnotationMetadata;
import org.springframework.core.type.StandardAnnotationMetadata;
@Configurable
@EnableFeignClients(value = "org.example.feignclientstarter.config.feign", clients = TestFeign.class)
public class AutoConfiguration {
    AutoConfiguration(ApplicationContext context) {
        try {
            loadFeignClients(context);
        } catch (Exception e) {
        }
    }

    public void loadFeignClients(ApplicationContext context) throws Exception {
        AutowireCapableBeanFactory beanFactory = context.getAutowireCapableBeanFactory();
        Class<?> candidateClass = Class.forName("org.springframework.cloud.openfeign.FeignClientsRegistrar");
        ImportBeanDefinitionRegistrar registrar =
                BeanUtils.instantiateClass(candidateClass, ImportBeanDefinitionRegistrar.class);

        BeanDefinitionRegistry registry = null;
        if (beanFactory instanceof BeanDefinitionRegistry) {
            registry = (BeanDefinitionRegistry) beanFactory;
        }
        if (registrar instanceof EnvironmentAware) {
            EnvironmentAware envAware = (EnvironmentAware) registrar;
            envAware.setEnvironment(new StandardEnvironment());
        }
        final AnnotationMetadata metadata = new StandardAnnotationMetadata(FeignAutoConfiguration.class);
        registrar.registerBeanDefinitions(metadata, registry);
    }
}

业务方法Service

java 复制代码
package org.example.feignclientstarter.service;
import lombok.experimental.Accessors;
import org.example.feignclientstarter.feign.TestFeign;
import org.springframework.stereotype.Service;
@Service
public class TestService {
    @Accessors
    private TestFeign testFeign;

    public Object getUser(String str) {
        return testFeign.getUser(str);
    }
}

resource下建META-INF.spring.factories文件

yaml 复制代码
org.springframework.boot.autoconfigure.EnableAutoConfiguration=org.example.feignclientstarter.config.AutoConfiguration

使用方法

在消费者服务中引入

xml 复制代码
<dependency>
    <groupId>org.example</groupId>
    <artifactId>feignClient-starter</artifactId>
    <version>0.0.1-SNAPSHOT</version>
</dependency>
相关推荐
JWASX21 小时前
【RocketMQ 生产者和消费者】- 事务源码分析(1)
java·rocketmq·java-rocketmq
AlunYegeer1 天前
JAVA,以后端的视角理解前端。在全栈的路上迈出第一步。
java·开发语言·前端
DFT计算杂谈1 天前
自动化脚本一键绘制三元化合物相图
java·运维·服务器·开发语言·前端·python·自动化
2301_771717211 天前
Spring Boot 自动配置核心注解
java·spring boot·mybatis
小Y._1 天前
面试被问synchronized锁升级,这5个问题答不上来直接挂!
java
姚青&1 天前
测试技术体系
java·python
南境十里·墨染春水1 天前
C++日志 2——实现单线程日志系统
java·jvm·c++
❀͜͡傀儡师1 天前
Claude Code 命令大全:从入门到精通的完整指南
spring boot·claude code
布吉岛的石头1 天前
微服务网关统一鉴权、限流、日志实战
java·spring·微服务