启动SpringBoot应用时No Qualifying Bean (NoSuchBeanDefinitionException) Available错误

No Qualifying Bean (NoSuchBeanDefinitionException) Available Error When Starting a SpringBoot Application

我正在向现有的 SpringBoot 应用程序添加一些新组件,并且在启动应用程序时遇到 bean 定义异常。

所有 bean/service 和其他组件都是通过注释配置的,而不是通过 spring xml 配置(我更熟悉基于 xml 的 spring 配置).不幸的是,为了解释我的问题,我不得不在下面进行一些混淆,而不是提供真实的代码。

在应用程序中我添加了一个新的工厂组件,将其命名为 FooSheetFactory:

package some.package;  

@Component
public class FooSheetFactory {

private final List<FooSheet> fooSheetList;

@autowired
public FooSheetFactory(List<FooSheet> fooSheetList) {
  this. fooSheetList = fooSheetList;
}

.
.
(other stuff)
.
}

此 class 使用名为 FooSheet 的组件:

package some.package;

@Component
public interface FooSheet {

public Foo getFoo(int param1, String param2);
}

工厂在应用程序的其他地方以如下方式实例化:

.
.
@Autowire
FooSheetFactory fsf;
.
.

启动SpringBoot应用时,出现如下错误:

Error creating bean with name "FooSheetFactory " defined 
in file [ ~path/target/classes/..../FooSheetFactory.class]: Unsatisfied dependency 
expressed through constructor parameter 0; nested exception 
is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of 
type 'java.util.List<some.package.FooSheet>' available. Expected at least 1 bean which 
qualifies as autowire candidate. Dependency annotations: {}

从表面上看,这个实例化与我们在应用程序其他地方使用 spring 的方式相似。 class 和接口都在同一个包中,并且此包中使用类似注释的其他 classes 不会在启动时抛出错误。如果您能深入了解我的问题可能是什么,我将不胜感激。谢谢。

不要将 @Component 注释放在接口上,将其放在实现 class 上。您的异常是抱怨它找不到您的接口的任何实现。你应该有:

@Component
class FooSheetImpl implements FooSheet {
  ...
}