我正在向现有 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)
.
}
此类使用一个名为 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 的方式。类和接口都在同一个包中,并且此包中使用类似注释的其他类在启动时不会引发错误。对于我的问题可能存在的任何见解,我将不胜感激。谢谢你。