【sprinb-boot】配置文件分离打包
生活随笔
收集整理的這篇文章主要介紹了
【sprinb-boot】配置文件分离打包
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
前言
- springboot 2.0.0.RELEASE
- maven 3.5.0
使用maven命令mvn package打包spring boot項目時,將配置文件分離出來。
pom.xml配置
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><build>...<plugins><!-- 配置文件分離打包步驟 : 1,jar -> 2,copy-resources -> 3,repackage --><!-- 配置文件分離打包1/3 jar : 配置文件文件不打包到jar中 --><plugin><artifactId>maven-jar-plugin</artifactId><configuration><excludes><exclude>application*.properties</exclude><exclude>messages*.properties</exclude><exclude>*.xml</exclude></excludes></configuration></plugin><!-- 配置文件分離打包2/3 copy-resources : 拷貝配置文件 --><plugin><artifactId>maven-resources-plugin</artifactId><configuration></configuration><executions><execution><id>copy-resources</id><phase>package</phase><goals><goal>copy-resources</goal></goals><configuration><resources><resource><directory>src/main/resources</directory><includes><include>application.properties</include><include>logback-spring.xml</include><include>messages*.properties</include></includes></resource></resources><outputDirectory>${project.build.directory}/final-package</outputDirectory></configuration></execution></executions></plugin><!-- 配置文件分離打包3/3 repackage : spring boot 打包設置 --><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><executions><execution><goals><goal>repackage</goal></goals><configuration><layout>ZIP</layout><!--設置spring boot的jar/war的存放路徑 --><outputDirectory>${project.build.directory}/final-package</outputDirectory></configuration></execution></executions></plugin></plugins></build>... </project>打包命令
mvn clean package啟動命令
java -jar xxx-springboot-app.jar總結
以上是生活随笔為你收集整理的【sprinb-boot】配置文件分离打包的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 视网膜脱落什么引起的
- 下一篇: 三度龋齿怎么治疗如何治疗