Spring Boot Maven 多模块打包

Posted 阮胜的个人博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot Maven 多模块打包相关的知识,希望对你有一定的参考价值。

application为启动模块,yml配置文件都在这个模块配置

父模块不要配置<build></build>节点,其他模块也不需要,只在application模块里面配置就好.

打包使用package命令

 

当整个项目打包成jar时,

该子模块会被打包成jar,此时如果要用代码加载里面的资源文件,不能使用 resource.getFile(),应该使用resource.getInputStream().

 如:

ClassPathResource resource = new ClassPathResource("/static/test.txt"); 
InputStream
in = resource.getInputStream();

 

若果是不可执行的jar包,不要在pom中定义spring-boot-maven-plugin插件,因为这个SpringBoot插件会在Maven的package后进行二次打包,目的为了生成可执行jar包

以上是关于Spring Boot Maven 多模块打包的主要内容,如果未能解决你的问题,请参考以下文章

Spring-boot:多模块打包

Spring boot 打包为war包报错:提示缺少web.xml

Spring Boot Multi-Module maven 项目重新打包失败

spring boot 项目打包到maven仓库供其它模块使用

springCloud多模块打包时报错问题

Spring Boot 与 POM 打包聚合器