Maven详解

2019-11-25  本文已影响0人  采药僧

企业中项目的构建往往是分模块,使用插件依赖较多,本文将对maven学习进行详细介绍总结。

Maven基本命令

mvn -v
mvn compile  编译
mvn test 测试
mvn package 打包
mvn clean 删除target
mvn install 安装jar包到本地仓库中

注:编译过程中查询坐标,本地仓库查找,加入项目classpath中,如果没有,去maven远程仓库中加载。

mvn archetype

自动创建骨架,也是第三方插件构建的原理。
1、mvn archetype:generate(根据命令行提示进行依次创建)
2、一次创建
mvn archetype:generate
-DgroupId=组织名,公司网址的反写
-DartifactId=项目名-模块名
-Dversion=版本号
-Dpackage=代码所在的包

Maven坐标与仓库

坐标:依赖,插件相关内容被称为构件,构件通过坐标作为唯一标识。
仓库:本地>远程 远程仓库地址:maven-model-builder.jar
org项目下,所有pom的父类pom-4.0.0.xml https://repo.maven.apache.org/maven2
镜像仓库:
conf/setting.xml

  <mirrors>
    <!-- mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
  </mirrors>

更改仓库位置:用户/.m2/repository
本地修改插件位置:
<localRepository>/path/to/local/repo</localRepository>
idea插件:setting 搜索maven修正user setting file和Local repository
修改本地JDK <profile></profile>

补充文档:http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html#Lifecycle_Reference

maven生命周期和插件

完整项目构建过程:清理,编译,测试,打包,集成测试,验证,部署

maven生命周期模仿项目周期分为三步: 默认构建:default 。项目清理:clean 。项目建站:site 。
1、default:compile test package install
2、clean:pre-clean clean post-clean
3、site:pre-site site post-site site-deploy
生命周期相互独立,各自的小阶段依赖于前面的阶段,但不会触发另外生命周期的任何阶段
例如:运行package会进行:compile test

maven插件使用
构建模式:

<build>
    <plugins>
        <plugin>
        官方部分插件:
        http://maven.apache.org/plugins/index.html
        <groupId>组织名</groupId>
        <artifactId>项目名-模块名</artifactId>
        <version>版本</version>
        <configuration>基础配置</configuration>
        <executions>
        <executions>
            <execution>
                <phase>package</phase>
                    <goals>
                        <goal>jar</goal>
                    </goals>
                </execution>
            </executions>
        </executions>
        </plugin>
    </plugins>
</build>

具体见插件文档分析http://maven.apache.org/plugins/index.html

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>当前pom的版本号,去上文寻找项目根pom.xml</modelVersion>
    <groupId>组织名,公司网址的反写或者项目名</groupId>
    <artifactId>项目名+模块名</artifactId>    <!--数1代表大版本号,数2代表分支版本号,数3代表小版本号,常见后缀snapshotk快照,alpha内部测试,beta公测,Release稳定,GA发布版本-->
    <version>版本号</version>
    <package>默认jar</package>
    <name>项目描述</name>
    <url>项目地址</url>
    <description>描述<description>
    <developers>开发人员列表<developers>
    <licenses>许可信息,例如开源项目</licenses>
    <organization>组织</organization>
    
    <!--依赖列表--> 
    <dependencies>
        <dependency>
            <groupId></groupId>
            <artifactId></artifactId>
            <version></version>
            <type></type>
            <scope>依赖作用范围,例如测试</scope>
            <optional>true/false依赖是否可选</optional>
            <exclusions>
                <!--解除依赖传递关系-->
                <exclusion>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
    
    <!--依赖管理,父类模块,供子类模块继承-->
    <dependencyManagement>
        <dependencies>
            <dependency>
            </dependency>
        </dependencies>
    </dependencyManagement>
    
    <!--为构建的行为提供支持-->
    <build>
        <!--插件列表-->
        <plugins>
            <plugin>
                <groupId></groupId>
                <artifactId></artifactId>
                <version></version>
                <!--在阶段结束后,运行插件命令-->
                <phase>阶段</phase>
                <goals>
                    <goal>操作,例如run</goal>
                </goals>
            </plugin>
        </plugins>
    </build>
    <!--依赖父类--> 
    <parent>
        <groupId></groupId>
        <artifactId></artifactId>
        <version></version>
        <relativePath>地址</relativePath>
    </parent>
    <!--多模块一起编译-->  
    <modules>
        <module></module>
    </modules>
</project>


注:
1、scope,三种classpath:编译,测试,运行。详解见:http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope
2、依赖具有传递性,例如B依赖A,C依赖B,加载过程中C的Maven目录会将A也导入。可以使用exclusions排除依赖传递关系。
3、公司项目本地多项目使用,如果修改了依赖的其他项目,先install到本地仓库,再在本项目重新Download一下,编译运行。

依赖冲突

1、短路优先,以最短路径的依赖版本为主。
2、路径相同的情况下,先声明的优先依赖。(不同组件,总有先调用和后调用之分,实际就是先调用的为主)

聚合和继承

1、<modules>聚合项目,让项目在主项目同时编译运行加载仓库。
2、<dependencyManagement>父类设置共同复用的依赖。父类的<packageing>类型为pom。
3、使用<properties>使用表达式定义全文版本号。

补充

使用idea编译多项目时,使用Lifecycle中的install,项目就会自动去maven仓库下载需要的包,将多项目编译。单独使用加载插件的install将无法自动下载包。

Maven 依赖版本查询:https://mvnrepository.com/

上一篇下一篇

猜你喜欢

热点阅读