集合工程中 maven 的多环境打包发布
在一个项目的开发过程中,我们经常要进行 开发环境 , 测试环境, 正式环境 打包部署,如果每次打包过程中我们都是人为的 根据 不同 环境 去修改一些 配置文件 ,这样不但工作量太庞大,而且还容易出错,而maven的插件正好解决了我们的困扰。
创建过程直接忽略,看最终的结果图
因为要发布一个webapp的主要配置文件集中在 web工程中,故而,相关的配置文件都在 ecps-manager-web工程的 resources下。
原本在 ecps-manager-web的resources中是没有 dev 和 test 文件夹的。改造后就是上图。
针对我的resources中文件的管理是分文件夹管理,故而, 在分环境打包是也是按照这种结构创建不同环境的文件分布。
很显然。我们把需要更改的配置文件,复制到各个不同环境的文件夹中, 同时保持原有的结构。那些不需要更改的文件是不需要复制的。
例如:
resources/properties/jdbc.properties是需要更改的配置文件,我们就需要的 dev 和 test 的文件下分别 创建一个 properties 文件夹,然后复制一分jdbc.properties文件即可。
pom.xml中的配置后面再说,先理清思路。
现在在这种结构下。我来描述开发中的存在情况。
我们通常在 svn 或者 github 中 checkout 项目的代码之后,需要在本地启动开发,这个时候,我们是不需要更改任何东西的。
比如 resource/properties/jdbc.properties 里面本来就配置的开发中的环境, 所以直接 tomcat 启动即可。不需要管 dev 或者 test
在前后端分离的开发方式下,后台本地开发完代码之后,需要打包发布到开发的环境中,提供API接口,这个时候就 使用 dev 中的配置文件,打包,或者交由 Jenkins 自动构建开发环境。
在前后端功能完成之后,就需要将当前功能截止的代码 打包部署到测试环境,供测试人员测试。这个时候 就 使用 test 中的配置文件, 打包,或者交由jenkins 自动构建测试环境。
测试完成之后,经过预发布环境之后,就要新的 tag 代码打包部署到正式环境,上线。这个时候 就 使用 prod 中的配置文件,打包。交由运维人员部署代码。
这里的工程 又有ecps-manager 是聚合工程,因此,相关的打包部署信息都配置在 ecps-manager 聚合工程的pom中。
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>ecps-parentartifactId>
<groupId>com.ecpsgroupId>
<version>1.0-SNAPSHOTversion>
<relativePath>../ecps-parent/pom.xmlrelativePath>
parent>
<modelVersion>4.0.0modelVersion>
<artifactId>ecps-managerartifactId>
<packaging>pompackaging>
<name>ecps-managername>
<url>http://maven.apache.orgurl>
<modules>
<module>/ecps-manager-modelmodule>
<module>/ecps-manager-mappermodule>
<module>/ecps-manager-servicemodule>
<module>/ecps-manager-webmodule>
modules>
<properties>
<project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
properties>
<profiles>
<profile>
<id>devid>
<properties>
<package.environment>devpackage.environment>
properties>
<activation>
<activeByDefault>trueactiveByDefault>
activation>
profile>
<profile>
<id>testid>
<properties>
<package.environment>testpackage.environment>
properties>
profile>
profiles>
<build>
<finalName>ecps-manager-webfinalName>
<plugins>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-war-pluginartifactId>
<version>2.2version>
<configuration>
<webXml>src\main\webapp\WEB-INF\web.xmlwebXml>
<warSourceDirectory>webappwarSourceDirectory>
<archive>
<addMavenDescriptor>falseaddMavenDescriptor>
archive>
<webResources>
<resource>
<directory>src/main/resources/${package.environment}directory>
<targetPath>WEB-INF/classestargetPath>
<filtering>truefiltering>
resource>
webResources>
configuration>
plugin>
<plugin>
<groupId>org.apache.tomcat.mavengroupId>
<artifactId>tomcat7-maven-pluginartifactId>
<configuration>
<port>8080port>
<path>/path>
<url>http://192.168.31.104:8080/manager/texturl>
<username>tomcatusername>
<password>tomcatpassword>
configuration>
plugin>
plugins>
build>
project>
打包使用的插件: maven-war-plugin
动态指定目录,接受参数 : ${package.environment}
目标路径:targetPage
webXml : 配置web.xml路径
mvn clean package -P test -----> 测试环境
mvn clean package -P dev -----> 开发环境
执行 mvn clean package -P test 的时候,报错 web.xml找不到:
就需要修改 中的内容。
也就是你工作空间中的对应的web.xml的路径(src/开始)
其实第一种方式打包之后的war中的结构中依旧存在 dev和test文件夹,而且pom.xml中的配置有点复杂,
现在提出第二种方式,简单的不能想象。
依旧展示一下打包之前使用第二种方式的结构(工程结构不变,展示ecps-manager-web结构):
这里把dev 和 test 全部包含到 env 文件夹下。
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>ecps-parentartifactId>
<groupId>com.ecpsgroupId>
<version>1.0-SNAPSHOTversion>
<relativePath>../ecps-parent/pom.xmlrelativePath>
parent>
<modelVersion>4.0.0modelVersion>
<artifactId>ecps-managerartifactId>
<packaging>pompackaging>
<name>ecps-managername>
<url>http://maven.apache.orgurl>
<modules>
<module>/ecps-manager-modelmodule>
<module>/ecps-manager-mappermodule>
<module>/ecps-manager-servicemodule>
<module>/ecps-manager-webmodule>
modules>
<properties>
<project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
properties>
<profiles>
<profile>
<id>devid>
<build>
<resources>
<resource>
<directory>src/main/resources/env/devdirectory>
resource>
resources>
build>
<activation>
<activeByDefault>trueactiveByDefault>
activation>
profile>
<profile>
<id>testid>
<build>
<resources>
<resource>
<directory>src/main/resources/env/testdirectory>
resource>
resources>
build>
profile>
profiles>
<build>
<finalName>ecps-manager-webfinalName>
<resources>
<resource>
<directory>src/main/resourcesdirectory>
<filtering>truefiltering>
<excludes>
<exclude>**/env/**exclude>
excludes>
resource>
resources>
<plugins>
<plugin>
<groupId>org.apache.tomcat.mavengroupId>
<artifactId>tomcat7-maven-pluginartifactId>
<configuration>
<port>8080port>
<path>/path>
<url>http://192.168.31.104:8080/manager/texturl>
<username>tomcatusername>
<password>tomcatpassword>
configuration>
plugin>
plugins>
build>
project>