springboot扫描到其他依赖模块定义的Bean 的方式
springboot扫描到其他依赖模块定义的Bean 的方式
springboot默认是不能扫描到其他依赖模块定义的Bean的。(默认扫描的是启动类所在包下的所有Bean)
也就是在项目启动的不能将其他模块的Bean加载到spring容器
以下两种方式可以解决:
方式1:
1.设置springboot的扫描包(扩大包的扫描范围)
方式2:
2.在依赖的模块中resorce目录下自定义spring.factories文件,写好需要扫描的配置类,springboot启动时会自动加载(springboot自动配置)
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.sheep.swagger.SwaggerConfig