Eclipse 导出springboot jar包引入到另一个springboot中加载jar中bean

  1.  两个项目结构

    Eclipse 导出springboot jar包引入到另一个springboot中加载jar中bean_第1张图片       Eclipse 导出springboot jar包引入到另一个springboot中加载jar中bean_第2张图片

  2.   将coc打成jar包 引入到 acca中 , Eclipse自带导出jar功能

    Eclipse 导出springboot jar包引入到另一个springboot中加载jar中bean_第3张图片
    注意:不勾选,注入bean的时候,会找不到类

  3.  acca 引入jar包
    Eclipse 导出springboot jar包引入到另一个springboot中加载jar中bean_第4张图片
     

  4. acca 添加 springboot 扫描包路径
     

    @SpringBootApplication
    @ComponentScan(basePackages = {"acc.acca","com.coc"})   // com.coc导入jar包的包名
    //@EnableScheduling
    public class AccaApplication {
          public static void main(String[] args) {
               SpringApplication.run(AccaApplication.class, args);
          }
    }

    友情连接 :https://blog.csdn.net/wangpeng047/article/details/8202353

    other:
    Eclipse 导出springboot jar包引入到另一个springboot中加载jar中bean_第5张图片

你可能感兴趣的:(springboot)