springboot将自己的jar包中的注解bean配置到启动类的扫描组件中

1.例如我要在我的另外工程中引入 daoSupport这个bean类,将此工程打包jar,引入到另外一个工程中,这样是不能直接使用的

也就是说需要spring-boot-start 将此bean注解扫描到,

springboot将自己的jar包中的注解bean配置到启动类的扫描组件中_第1张图片

2.配置(在本项目中中家兔@configuration配置注解,我这个本里面的需要加入SqlSessionTemplate对象,所以condtion

alOnclass注解表示具备这个bean的时候装配加载我这个bean)

springboot将自己的jar包中的注解bean配置到启动类的扫描组件中_第2张图片

3.文件配置 在配置新建目录,spring.factories文件中写入你要扫描的包名

springboot将自己的jar包中的注解bean配置到启动类的扫描组件中_第3张图片

springboot将自己的jar包中的注解bean配置到启动类的扫描组件中_第4张图片

多个以逗号分割,

原文:https://segmentfault.com/a/1190000011433487?utm_source=tag-newest

 

你可能感兴趣的:(maven,SpringBoot)