spring.factories与@ComponentScan注解简单记录

springboot加载注入bean,如果需要加载注入bean不在与启动类Application同目录下,或者由外部引入进来bean,想在业务类中使用spring bean,两种处理方式:

  1. 在启动类里加上注解,扫描需要加载的bean所在的包。如:@ComponentScan({ “com.xxx.xxx”, “com.xxx.xxx” })

  2. 使用spring.factories文件,在resources下创建文件META-INF/spring.factories
    文件配置需要加载的类名:
    org.springframework.boot.autoconfigure.EnableAutoConfiguration=
    com.xxx.xxxFallbackFactory,
    com.xxx.xxx
    多个类名逗号斜杠隔开
    在对应的java类需要加上@Component注解

  3. 两种方式注入bean实际类似,使用第二种可以不用去修改启动类,统一管理需要注入的bean,多人协作,修改方便,由pom引入的bean,这种方式比较方便。注入完成后,在业务类上只要正常因为bean的依赖就可以使用了,与controller引入service的依赖类似

  4. @ComponentScan注解的作用是扫描@SpringBootApplication所在的Application类(即spring-boot项目的入口类)所在的包(basepackage)下所有的@component注解(或拓展了@component的注解)标记的bean,并注册到spring容器中。(摘抄别人的,哈哈哈,转载:https://blog.csdn.net/qq_31854907/article/details/107631171)

  5. 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)

引用:@SpringBootConfiguration是一个注解,用于标识一个类是Spring Boot的配置类。它具有@Configuration的功能,并且在Spring Boot项目中更推荐使用@SpringBootConfiguration来替代@Configuration。 引用:@EnableAutoConfiguration是一个注解,用于启用自动配置。它会根据项目的依赖和配置,自动加载适合的配置类。它会扫描classpath下的META-INF/spring.factories文件,根据其中的配置信息,自动配置Spring Boot应用程序的各种组件。 引用:@ComponentScan是一个注解,用于指定要扫描的包路径。它可以扫描指定包及其子包下的所有类,并将带有标识注解(如@Controller、@Service、@Repository等)的类注册为Spring Bean。它通常与@SpringBootConfiguration一起使用,用于启用组件扫描并将扫描到的类注册为Spring的组件。 综上所述,@SpringBootConfiguration用于标识一个类是Spring Boot的配置类,@EnableAutoConfiguration用于启用自动配置,@ComponentScan用于指定要扫描的包路径。它们的功能分别是配置Spring Boot应用程序、自动加载适合的配置类以及扫描并注册指定包下的组件。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [springboot(一)-@SpringBootConfiguration、@EnableAutoConfiguration源码分析](https://blog.csdn.net/weixin_43520586/article/details/121156638)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [Springboot核心注解(@SpringBootConfiguration、@EnableAutoConfiguration、@ComponentScan)、关闭自动...](https://blog.csdn.net/weixin_44045828/article/details/117983882)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值