maven 多环境打包发布的两种方式

    • maven 聚合工程的创建
  • 第一种方式
    • 不同环境打包的配置
    • 开发中的使用
      • 本地开发环境
      • 开发环境
      • 测试环境
      • 生产环境
    • 具体的pom文件
    • maven 命令打包
    • 可能出现的错误
      • webxml 不存在
      • 页面不能访问jsp不存在
  • 第二种方式
    • ecps-manager 聚合工程中 pomxml

集合工程中 maven 的多环境打包发布

在一个项目的开发过程中,我们经常要进行 开发环境 , 测试环境正式环境 打包部署,如果每次打包过程中我们都是人为的 根据 不同 环境 去修改一些 配置文件 ,这样不但工作量太庞大,而且还容易出错,而maven的插件正好解决了我们的困扰。

1. maven 聚合工程的创建

创建过程直接忽略,看最终的结果图

maven 多环境打包发布的两种方式_第1张图片

第一种方式

2. 不同环境打包的配置

因为要发布一个webapp的主要配置文件集中在 web工程中,故而,相关的配置文件都在 ecps-manager-web工程的 resources下。

maven 多环境打包发布的两种方式_第2张图片

原本在 ecps-manager-web的resources中是没有 dev 和 test 文件夹的。改造后就是上图。

针对我的resources中文件的管理是分文件夹管理,故而, 在分环境打包是也是按照这种结构创建不同环境的文件分布。

很显然。我们把需要更改的配置文件,复制到各个不同环境的文件夹中, 同时保持原有的结构。那些不需要更改的文件是不需要复制的。

例如
resources/properties/jdbc.properties是需要更改的配置文件,我们就需要的 dev 和 test 的文件下分别 创建一个 properties 文件夹,然后复制一分jdbc.properties文件即可。

pom.xml中的配置后面再说,先理清思路。

3. 开发中的使用

现在在这种结构下。我来描述开发中的存在情况。

1. 本地开发环境

我们通常在 svn 或者 github 中 checkout 项目的代码之后,需要在本地启动开发,这个时候,我们是不需要更改任何东西的。
比如 resource/properties/jdbc.properties 里面本来就配置的开发中的环境, 所以直接 tomcat 启动即可。不需要管 dev 或者 test

2. 开发环境

在前后端分离的开发方式下,后台本地开发完代码之后,需要打包发布到开发的环境中,提供API接口,这个时候就 使用 dev 中的配置文件,打包,或者交由 Jenkins 自动构建开发环境。

3. 测试环境

在前后端功能完成之后,就需要将当前功能截止的代码 打包部署到测试环境,供测试人员测试。这个时候 就 使用 test 中的配置文件, 打包,或者交由jenkins 自动构建测试环境。

4. 生产环境

测试完成之后,经过预发布环境之后,就要新的 tag 代码打包部署到正式环境,上线。这个时候 就 使用 prod 中的配置文件,打包。交由运维人员部署代码。

4. 具体的pom文件

这里的工程 又有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 多环境打包发布的两种方式_第3张图片

打包使用的插件: maven-war-plugin

动态指定目录,接受参数 : ${package.environment}

目标路径:targetPage

maven 多环境打包发布的两种方式_第4张图片

webXml : 配置web.xml路径

5. maven 命令打包

mvn clean package -P test -----> 测试环境
mvn clean package -P dev  -----> 开发环境

在IDEA 中可以这样操作:
maven 多环境打包发布的两种方式_第5张图片

6. 可能出现的错误:

web.xml 不存在

有些文档会将此处配置为:
这里写图片描述

执行 mvn clean package -P test 的时候,报错 web.xml找不到:
maven 多环境打包发布的两种方式_第6张图片

就需要修改 中的内容。

maven 多环境打包发布的两种方式_第7张图片

也就是你工作空间中的对应的web.xml的路径(src/开始)
这里写图片描述

页面不能访问,jsp不存在

修改 为自己jsp存放路径
maven 多环境打包发布的两种方式_第8张图片

第二种方式

其实第一种方式打包之后的war中的结构中依旧存在 dev和test文件夹,而且pom.xml中的配置有点复杂,
现在提出第二种方式,简单的不能想象。
依旧展示一下打包之前使用第二种方式的结构(工程结构不变,展示ecps-manager-web结构):

maven 多环境打包发布的两种方式_第9张图片

这里把dev 和 test 全部包含到 env 文件夹下。

ecps-manager 聚合工程中 pom.xml

<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>

最终的打包结果:
maven 多环境打包发布的两种方式_第10张图片

你可能感兴趣的:(MAVEN)