英文:
Inject bean from a different folder
问题
我有一个如下所示的项目结构:
(图片已省略)
在我的 Groovy 文件夹中有一个被标记为 @Component
的类,我想要在 Java 文件夹内的另一个类中进行注入。然而,Spring 找不到要注入的 bean。当我将被标记为 @Component
的类移动到 Java 文件夹时,它可以正常工作。如何让 Spring 知道这个 Groovy 文件夹下的内容?
英文:
I have a project structure that looks like this:
In My Groovy folder contains a class marked with @Component
that I Want to inject in another class inside the java folder. However spring can't find the bean to inject, when I move the class marked with @Component
to the java folder it works fine. How can I make spring aware of the groovy folder?
答案1
得分: 4
你可以在标有 @SpringBootApplication 注解的 Spring 应用程序中使用 @ComponentScan 来扫描来自其他包的组件。
@ComponentScan(basePackages = "com.stackoverflow.other.package")
参考链接:https://www.baeldung.com/spring-component-scanning。
英文:
You can use @ComponentScan at your Spring application (annotated with @SpringBootApplication) to scan components from other packages.
@ComponentScan(basePackages = "com.stackoverflow.other.package")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论