Maven作为Java后端使用频率非常高的一款依赖管理工具,在此咱们由浅入深,分三篇文章(Maven基础、Maven进阶、私服搭建)来深入学习Maven,此篇为开篇主要介绍Maven进阶知识,包含坐标、依赖、仓库、生命周期、插件、继承
<groupId>org.examplegroupId>
<artifactId>study-mavenartifactId>
<version>1.0-SNAPSHOTversion>
坐标元素 | 含义 | 举例 |
---|---|---|
groupId | 组织标识,一般为:公司网址反写+项目名 | org.example |
artifactId | 项目名称,一般为:项目名-模块名 | study-maven |
version | 版本号0.0.1-SNAPSHOPT 第一个0表示大版本号 第二个0表示分支版本号 第三个0表示小版本号 SNAPSHOT:快照 ALPHA:内测版本 BETA:公测版本 RELEASE:稳定版本 GA:正式版本 |
study-maven |
packaging | 打包方式 | pom jar maven-plugin ejb war … |
clissifier | 用来帮助定义构件输出的一些附属构件,通常不用 |
Maven项目在开发工程中有三套classpath
Maven中共 6 种 scope,包括:compile、provided、runtime、test、system、import,但实际生产中用得最多的也就标红的四种
依赖传递指:A项目依赖了B项目,B项目依赖了C项目,则A项目中也会引入C项目,其中A依赖B被称为第一传递依赖,B依赖C被称为第二传递依赖
依赖传递原则
依赖冲突指:A项目依赖B项目,B项目依赖C项目的1.0版本,同时A项目依赖D项目的1.1版本,根据依赖传递则A项目中同时具有D项目的1.0、1.1版本,此时就存在依赖冲突
冲突解决
<dependency>
<groupId>org.examplegroupId>
<artifactId>maven-bartifactId>
<version>1.0-SNAPSHOTversion>
dependency>
<dependency>
<groupId>org.examplegroupId>
<artifactId>maven-bartifactId>
<version>1.1-SNAPSHOTversion>
dependency>
<dependency>
<groupId>org.examplegroupId>
<artifactId>maven-bartifactId>
<version>1.0-SNAPSHOTversion>
dependency>
<dependency>
<groupId>org.examplegroupId>
<artifactId>maven-cartifactId>
<version>1.1-SNAPSHOTversion>
dependency>
<dependency>
<groupId>org.examplegroupId>
<artifactId>maven-bartifactId>
<version>1.0-SNAPSHOTversion>
<exclusions>
<exclusion>
<groupId>org.examplegroupId>
<artifactId>maven-bartifactId>
exclusion>
exclusions>
dependency>
<dependency>
<groupId>org.examplegroupId>
<artifactId>maven-bartifactId>
<version>1.1-SNAPSHOTversion>
dependency>
<dependency>
<groupId>org.examplegroupId>
<artifactId>maven-cartifactId>
<version>1.0-SNAPSHOTversion>
<optional>trueoptional>
dependency>
仓库分类:仓库分为本地仓库、中央仓库、远程仓库,其中本地仓库即个人配置的本地仓库、远程仓库即公司配置的私服仓库、中央仓库即为apache或阿里配置的仓库
<localRepository>D:\repolocalRepository>
<mirrors>
<mirror>
<id>alimavenid>
<mirrorOf>centralmirrorOf>
<name>aliyun mavenname>
<url>http://maven.aliyun.com/nexus/content/groups/public/url>
mirror>
mirrors>
生命周期:maven有三种生命周期,clean、default、site,每个生命周期又包含不同的阶段,后一阶段的执行都必须先执行前一阶段指令后才执行下一阶段指令
生命周期 | clean | default | site |
阶段(phase),执行顺序由上至下 | pre-clean | validate | pre-site |
clean | initialize | site | |
post-clean | generate-sources | post-site | |
process-sources | site-deploy | ||
generate-resources | |||
process-resources | |||
compile | |||
process-classes | |||
generate-test-sources | |||
generate-test-resources | |||
process-test-resources | |||
test-compile | |||
process-test-classes | |||
test | |||
prepare-package | |||
package | |||
pre-integration-test | |||
integration-test | |||
post-integration-test | |||
verify | |||
install | |||
deploy |
maven插件的执行实际就是从中央仓库拉取插件jar包,然后通过执行对应命令方式来执行插件,因此当我们在执行插件时,卡着不动,可以考虑将阿里云中央仓库给注释掉,直接从apache中央仓库拉取
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-compiler-pluginartifactId>
<version>3.1version>
<configuration>
<source>1.8source>
<target>1.8target>
<encoding>UTF-8encoding>
configuration>
plugin>
<plugin>
<groupId>org.apache.tomcat.mavengroupId>
<artifactId>tomcat7-maven-pluginartifactId>
<version>2.2version>
<configuration>
<port>8080port>
<path>/abcpath>
<uriEncoding>UTF-8uriEncoding>
configuration>
plugin>
plugins>
build>
父类通过dependencyManagement来控制所要引入的依赖和对应版本,子类根据选择,只需要引入对应坐标即可,无需重新定义版本号,从而来控制依赖版本,此时依赖只做依赖定义,并未进行依赖引入
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>fastjsonartifactId>
<version>1.2.83version>
dependency>
dependencies>
dependencyManagement>
<dependencies>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>fastjsonartifactId>
dependency>
dependencies>
properties用于定义统一版本
<properties>
<maven.compiler.source>8maven.compiler.source>
<maven.compiler.target>8maven.compiler.target>
<fastjson>1.2.83fastjson>
properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>fastjsonartifactId>
<version>${fastjson}version>
dependency>
dependencies>
dependencyManagement>