从不同文件夹注入Bean

huangapple go评论72阅读模式
英文:

Inject bean from a different folder

问题

我有一个如下所示的项目结构:

(图片已省略)

在我的 Groovy 文件夹中有一个被标记为 @Component 的类,我想要在 Java 文件夹内的另一个类中进行注入。然而,Spring 找不到要注入的 bean。当我将被标记为 @Component 的类移动到 Java 文件夹时,它可以正常工作。如何让 Spring 知道这个 Groovy 文件夹下的内容?

英文:

I have a project structure that looks like this:

从不同文件夹注入Bean

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")

See https://www.baeldung.com/spring-component-scanning.

huangapple
  • 本文由 发表于 2020年8月19日 15:33:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/63482087.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定