随笔 - 547  文章 - 1  评论 - 292  阅读 - 33万

引入feign注入报错 org.springframework.beans.factory.NoSuchBeanDefinitionException解决

引入feign注入报错 org.springframework.beans.factory.NoSuchBeanDefinitionException解决

[172.16.22.215] out: Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: 
No qualifying bean of type 'com.test.mydock.api.FeignRemoteTestService' available: expected at least 1 bean which qualifies as autowire candidate. 
Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
复制代码
//需要加入注册扫描   加入 com.test.mydock 扫描路径
@SpringBootApplication(scanBasePackages = {"com.order.photo","com.order","com.test.mydock"})
@MapperScan({"com.order"})
public class PhotoServerSpringBoot extends SpringBootServletInitializer {

//同时还需要加上这个
@EnableFeignClients({"com.order"})
@EnableEurekaClient


//最终的注解 
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;


@EnableFeignClients({"com.order"})
@EnableEurekaClient
@SpringBootApplication(scanBasePackages = {"com.order.photo","com.order","com.test.mydock"})
@MapperScan({"com.order"})
public class PhotoServerSpringBoot extends SpringBootServletInitializer {

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

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(PhotoServerSpringBoot.class);
    }
}
复制代码

 

posted on   oktokeep  阅读(171)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
历史上的今天:
2020-08-14 函数式表达式基本类型及固定类型 demo
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示