Maven的本质时一个项目管理工具,将项目开发和管理过程抽象成一个项目对象模型(POM)
POM(Project Object Model):项目对象模型
maven作用:
仓库:用于存储资源,包含各种jar包
仓库分类:
坐标:Maven中的坐标用于描述仓库中资源的位置
坐标地址:https://repo1.maven.org/maven2/
仓库地址:https://mvnrepository.com/
坐标组成:
Maven坐标的作用:
使用唯一标识,唯一性定位资源位置,通过该标识可以将资源的识别与下载工作交互由机器完成。
本地仓库位置:
默认位置:登录用户名所在目录下的.m2文件夹中
<localRepository>${user.home}/.m2/repository</localRepository>
自定义位置:
<localRepository>D:\maven\repository</localRepository>
默认仓库位置:
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
在seting文件中配置阿里云镜像仓库
<mirrors>
<!--配置具体的仓库的下载镜像-->
<mirror>
<!-- 此镜像的唯一标识符,用来区分不同的mirror元素 -->
<id>nexus-aliyun</id>
<!-- 对哪种仓库进行镜像,简单说就是替代哪个仓库 -->
<mirrorOf>central</mirrorOf>
<!-- 镜像名称 -->
<name>Nexus aliyun</name>
<!-- 镜像URL -->
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
Maven构建命令使用mvn开头,后面添加功能参数,可以一次执行多个命令,使用空格分隔。
命令 | 释义 |
---|---|
mvn complie | 编译 |
mvn clean | 清理 |
mvn test | 测试 |
mvn package | 打包 |
mvn install | 安装到本地仓库 |
1.项目编写成功后,执行mvn install命令
2.执行mvn test命令,先编译,后测试,保存测试结果
3.执行mvn package命令
先执行编译,测试后编译,再test,最后执行打包指令
4.执行mvn install命令,执行编译,测试,打包,最后将jar包安装到本地仓库
maven命令创建工程:
mvn archetype:generate
-DgroupId={project-packaging}
-DartifactId={project-name}
-DarchetypeArtifactId=maven-archetype-quickstart
-DinteractiveMode=false
创建java工程
mvn archetype:generate -DgroupId=com.itheima -DartifactId=java-project -
DarchetypeArtifactId=maven-archetype-quickstart -Dversion=0.0.1-snapshot -
DinteractiveMode=false
创建web工程
mvn archetype:generate -DgroupId=com.itheima -DartifactId=web-project -
DarchetypeArtifactId=maven-archetype-webapp -Dversion=0.0.1-snapshot -
DinteractiveMode=false
maven配置Tomcat7运行插件:
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.mavengroupId>
<artifactId>tomcat7-maven-pluginartifactId>
<version>2.1version>
<configuration>
<port>80port> 端口
<path>/path> 路径
configuration>
plugin>
plugins>
build>
依赖指当前项目运行所需的jar,一个项目可以设置多个依赖。
依赖配置:
<dependencies>
<!— 设置具体的依赖-->
<dependency>
<!— 依赖所属群组id-->
<groupId>junitgroupId>
<!— 依赖所属项目id-->
<artifactId>junitartifactId>
<!— 依赖版本号 -->
<version>4.12version>
dependency>
dependencies>
依赖传递(相对概念):
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<optional>true</optional>
</dependency>
排除依赖:主动断开依赖的资源,被排除的资源无需指定版本,通过设置
<dependency>
<groupId>com.heima</groupId>
<artifactId>project03</artifactId>
<version>1.0.-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
依赖范围: 依赖的jar默认情况可以在任何地方使用,可以通过scope标签设定其作用范围
作用范围:
scope | 主程序 | 测试代码 | 打包 | 范例 |
---|---|---|---|---|
comile(默认) | Y | Y | Y | log4j |
test | Y | junit | ||
provided | Y | Y | servlet-api | |
runtime | Y | jdbc |
依赖范围传递性
带有依赖范围的资源在进行传递时,作用范围将收到影响
maven构建生命周期描述的是一次构建过程经历了多少个事件。
maven对项目构建的生命周期划分为3套:
clean生命周期
定义哪个生命周期执行哪个插件
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal> #对源码打包
</goals>
<phase>generate-test-resources</phase> #插件执行时期
</execution>
</executions>
</plugin>
</plugins>
</build>
聚合:聚合用于快速构建maven工程,一次性构建多个项目/模块。
创建一个空模块,打包类型定义为pom
<packaging>pom</packaging>
定义当前模块进行构建时关联的其他模块名称
<modules>
<module>../ssm_controller</module>
<module>../ssm_service</module>
<module>../ssm_dao</module>
<module>../ssm_pojo</module>
</modules>
通过继承可以实现在子工程中沿用父工程中的配置,避免子工程中依赖版本冲突。
在子工程中声明其父工程坐标与对应的位置。
1.父工程编写:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-contextartifactId>
<version>5.1.9.RELEASEversion>
dependency>
<dependencies>
<dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.tomcat.mavengroupId>
<artifactId>tomcat7-maven-pluginartifactId>
<version>2.1version>
<configuration>
<port>80port>
<path>/path>
configuration>
plugin>
plugins>
pluginManagement>
build>
2.在子工程中定义依赖关系,无需声明依赖版本,版本参照父工程中依赖的版本
<parent>
<groupId>com.itheimagroupId>
<artifactId>ssmartifactId>
<version>1.0-SNAPSHOTversion>
<relativePath>../ssm/pom.xmlrelativePath>
parent>
<modelVersion>4.0.0modelVersion>
<artifactId>ssm_pojoartifactId>
<packaging>jarpackaging>
<dependencies>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-contextartifactId>
dependency>
dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.mavengroupId>
<artifactId>tomcat7-maven-pluginartifactId>
plugin>
plugins>
build>
自定义属性: 等同于定义变量,方便统一维护。
定义自定义属性:
<properties>
<spring.version>5.1.9.RELEASEspring.version>
<junit.version>4.12junit.version>
properties>
调用:
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-contextartifactId>
<version>${spring.version}version>
dependency>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>${junit.version}version>
dependency>
内置属性: 使用maven内置属性,快速配置
${basedir}
${version}
调用:
<groupId>com.itheimagroupId>
<artifactId>ssmartifactId>
<version>1.0-SNAPSHOTversion>
<packaging>pompackaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.itheimagroupId>
<artifactId>ssm_pojoartifactId>
<version>${version}version>
dependency>
dependencies>
dependencyManagement>
Setting属性: 使用Maven配置文件setting.xml中的标签属性,用于动态配置
调用格式:
${settings.localRepository}
Java系统属性: 读取Java系统属性
调用格式:
${user.home}
系统属性查询方式:mvn help:system
环境变量属性: 读取环境变量属性
调用格式:
${env.JAVA_HOME}
工程版本号约定
定义资源文件引用pom属性,集中统一管理
1.pom.xml文件修改,设置文件路径
<properties>
<jdbc.url>jdbc:mysql://127.2.2.2:3306/ssm_dbjdbc.url>
properties>
<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/resourcesdirectory>
<filtering>truefiltering>
resource>
resources>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resourcesdirectory>
<filtering>truefiltering>
testResource>
testResources>
build>
2.资源文件修改,使用${属性名}引用pom属性
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=${jdbc.url}
jdbc.username=root
jdbc.password=itheima
<profiles>
<profile>
<id>pro_envid>
<properties>
<jdbc.url>jdbc:mysql://127.1.1.1:3306/ssm_dbjdbc.url>
properties>
<activation>
<activeByDefault>trueactiveByDefault>
activation>
profile>
<profile>
<id>dep_envid>
<properties>
<jdbc.url>jdbc:mysql://127.2.2.2:3306/ssm_dbjdbc.url>
properties>
profile>
profiles>
跳过测试环节的应用场景:
跳过测试:
mvn 指令 –D skipTests
mvn install –D skipTests
跳过一些测试
mvn clean install -DskipTests=MyTest1,MyTest2
指定执行某些测试
mvn test -Dtest=MyTest1,MyTest2
<plugin>
<!--可省略-->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<skipTests>true</skipTests>
<!--设置跳过测试-->
<includes>
<!--包含指定的测试用例 -->
<include>**/User*Test.java</include>
</includes>
<!--<excludes>
<!--排除测试用例 -->
<exclude>**/User*TestCase.java</exclude>
</excludes>-->
</configuration>
</plugin>
Nexus是Sonatype公司的一款maven私服产品。
下载地址:https://help.sonatype.com/repomanager3/download
下载解压后目录:
在bin目录中输入:nexus /run nexus启动:
访问默认端口:8081,http://localhost:8081
仓库分类:
进入页面,提示默认密码位置,之后修改密码
进入首页:
创建仓库:
选择类型:
添加到public群组中
上传组件
RELEASE版本SNAPSHOT版本,会做一个版本校验,需要统一
查看:
Idea环境中资源上传和下载:
setting.xml配置本地仓库访问私服的权限(下载地址)
<servers>
<server>
<id>heima-releaseid>
<username>adminusername>
<password>adminpassword>
server>
<server>
<id>heima-snapshotsid>
<username>adminusername>
<password>adminpassword>
server>
servers>
setting.xml配置本地仓库来源为私服
<mirrors>
<mirror>
<id>nexus-heimaid>
<mirrorOf>*mirrorOf>
<url>http://localhost:8081/repository/maven-public/url>
mirror>
mirrors>
配置当前项目访问私服上传资源的保存位置(pom.xml文件)
<distributionManagement>
<repository>
<id>heima-releaseid>
<url>http://localhost:8081/repository/heima-release/url>
repository>
<snapshotRepository>
<id>heima-snapshotsid>
<url>http://localhost:8081/repository/heima-snapshots/url>
snapshotRepository>
distributionManagement>
发布资源到私服命令
mvn deploy