对于maven中引入其他外部包加入容器的过程,需要用到spring.factories
spring.factories的作用:将自动配置类与对应的配置类集中在一起,方便springboot自动装配,用KV记录了所需加入容器的类,
正常情况下,通过@CompentScan注解就可以扫描springboot内的bean,
而当我们需要调用包外的bean,就需要spring.factories帮助springboot管理项目包以外的bean。
标签:容器,需要,springboot,spring,什么,bean,factories From: https://www.cnblogs.com/kun1790051360/p/18155948