springboot加载注入bean,如果需要加载注入bean不在与启动类Application同目录下,或者由外部引入进来bean,想在业务类中使用spring bean,两种处理方式:
-
在启动类里加上注解,扫描需要加载的bean所在的包。如:@ComponentScan({ “com.xxx.xxx”, “com.xxx.xxx” })
-
使用spring.factories文件,在resources下创建文件META-INF/spring.factories
文件配置需要加载的类名:
org.springframework.boot.autoconfigure.EnableAutoConfiguration=
com.xxx.xxxFallbackFactory,
com.xxx.xxx
多个类名逗号斜杠隔开
在对应的java类需要加上@Component注解 -
两种方式注入bean实际类似,使用第二种可以不用去修改启动类,统一管理需要注入的bean,多人协作,修改方便,由pom引入的bean,这种方式比较方便。注入完成后,在业务类上只要正常因为bean的依赖就可以使用了,与controller引入service的依赖类似
-
@ComponentScan注解的作用是扫描@SpringBootApplication所在的Application类(即spring-boot项目的入口类)所在的包(basepackage)下所有的@component注解(或拓展了@component的注解)标记的bean,并注册到spring容器中。(摘抄别人的,哈哈哈,转载:https://blog.csdn.net/qq_31854907/article/details/107631171)
-
spring.factories文件是帮助spring-boot项目包以外的bean(即在pom文件中添加依赖中的bean)注册到spring-boot项目的spring容器的结论。由于@ComponentScan注解只能扫描spring-boot项目包内的bean并注册到spring容器中,因此需要@EnableAutoConfiguration注解来注册项目包外的bean。而spring.factories文件,则是用来记录项目包外需要注册的bean类名。(摘抄别人的,哈哈哈,转载:https://blog.csdn.net/qq_31854907/article/details/107631171)