栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何从Spring Boot Jar中排除资源文件?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何从Spring Boot Jar中排除资源文件?

代替使用maven-spring-boot插件,使用maven-resource插件和maven配置文件:

<profiles>  <profile>    <id>prod</id>    <build>      <resources>        <resource>          <filtering>true</filtering>          <directory>[your directory]</directory>          <excludes> <exclude>[non-resource file #1]</exclude> <exclude>[non-resource file #2]</exclude> <exclude>[non-resource file #3]</exclude> ... <exclude>[non-resource file #n]</exclude>          </excludes>        </resource>      </resources>    </build>  </profile></profiles>

确保

<filtering>true</filtering>
在资源元素内指定选项。

为每种环境创建一个配置文件并过滤这些文件。

确保使用适当的配置文件执行Maven:

mvn clean install -P prod

要查看maven-resource插件的更多示例,请查看maven-
resource

如果您想了解有关个人资料的更多信息,请查看个人资料



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/466226.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号