我正在向现有的 SpringBoot 应用程序添加一些新组件,并且在启动应用程序时遇到 bean 定义异常。所有 bean/service 和其他组件都是通过注解配置的,而不是通过 spring xml 配置(我更熟悉基于 xml 的 spring 配置)。不幸的是,为了解释我的问题,我不得不在下面进行一些混淆,而不是提供真实的代码。在应用程序中,我添加了一个新的工厂组件,将其命名为 FooSheetFactory:package some.package; @Componentpublic class FooSheetFactory {private final List<FooSheet> fooSheetList;@autowiredpublic FooSheetFactory(List<FooSheet> fooSheetList) { this. fooSheetList = fooSheetList;}..(other stuff).}此类使用名为 FooSheet 的组件:package some.package;@Componentpublic interface FooSheet {public Foo getFoo(int param1, String param2);}工厂在应用程序的其他地方以如下方式实例化:..@AutowireFooSheetFactory 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 的方式。类和接口都在同一个包中,并且该包中使用类似注释的其他类在启动时不会抛出错误。如果您能深入了解我的问题可能是什么,我将不胜感激。谢谢。
1 回答
有只小跳蛙
TA贡献1824条经验 获得超8个赞
不要把@Component注解放在接口上,放在实现类上。您的异常是抱怨它找不到您的接口的任何实现。你应该有:
@Component
class FooSheetImpl implements FooSheet {
...
}
添加回答
举报
0/150
提交
取消