上一节的完整项目(链接:https://pan.baidu.com/s/1sLHA3cSE2SgJLVO3LpUn3g 提取码:s5bb)
将原始模块按照功能拆分成若干子模块,方便模块间的相互调用,接口共享
实验
① 新建项目maven01,将SpringMVC02项目的domain文件移动到maven01中
② 删除将SpringMVC02项目中的domain文件(BookService出现报错)
③ 在SpringMVC02中的pom.xml中导入maven01的坐标(坐标在maven01中)
<dependency>
<groupId>com.examplegroupId>
<artifactId>maven01artifactId>
<version>1.0-SNAPSHOTversion>
dependency>
④ 将maven01安装到本地仓库(maven的install)
⑤ 在SpringMVC02项目中更新maven
依赖具有传递性
依赖传递冲突问题
可选依赖:可选依赖是指隐藏当前锁依赖的资源——不透明
<dependency>
<groupId>com.examplegroupId>
<artifactId>maven01artifactId>
<version>1.0-SNAPSHOTversion>
<optional>trueoptional>
dependency>
排除依赖:
<dependency>
<groupId>com.examplegroupId>
<artifactId>maven01artifactId>
<version>1.0-SNAPSHOTversion>
<exclusions>
<exclusion>
<groupId>log4jgroupId>
<artifactId>log4jartifactId>
exclusion>
exclusions>
dependency>
聚合具体实现步骤
① 创建新项目maven_parent,设置打包类型为pom
<groupId>com.examplegroupId>
<artifactId>maven_parentartifactId>
<version>1.0-SNAPSHOTversion>
<packaging>pompackaging>
注意事项:每个maven工程都有对应的打包方式,默认为jar,工程打包方式为war
② 设置当前聚合工程包含的子模块名称
<modules>
<module>../maven01module>
<module>../SpringMVC02module>
modules>
注意事项:聚合工程中所包含的模块在进行构建时会根据模块间的依赖关系设置构建顺序,与聚合工程中模块的配置书写位置无关
参与聚合的工程无法向上感知是否参与聚合,只能向下配置哪些模块参与本工程的聚合
概念::描述的是两个工程间的关系,与java中的继承相似,子工程可以继承父工程中的配置信息,常见于依赖关系的继承。
作用:
简化配置
减少版本冲突
继承步骤
① 在父工程的pom中配置依赖关系(子工程将沿用父工程中的依赖关系)
<dependencies>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.2.10.RELEASEversion>
dependency>
...
dependencies>
② 配置子工程中可选的依赖关系(依旧在父工程的pom.xml中)
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.11version>
<scope>testscope>
dependency>
...
dependencies>
dependencyManagement>
③ 在子工程中配置当前工程所继承的父工程
<parent>
<groupId>com.examplegroupId>
<artifactId>maven_parentartifactId>
<version>1.0-SNAPSHOTversion>
<relativePath>../maven_parent/pom.xmlrelativePath>
parent>
④ 在子工程中配置使用父工程可选依赖的坐标
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<scope>testscope>
dependency>
dependencies>
注意事项:子工程中使用父工程的可选依赖时,仅需要提供群组id和项目id,无需提供版本,版本由父工程统一提供,避免版本冲突
子工程中还可以定义父工程中没有定义的依赖关系
属性配置与使用步骤
① 定义属性
<properties>
<spring.version>5.2.10.RELEASEspring.version>
<mybatis.version>3.5.6mybatis.version>
properties>
② 引用属性
<dependencies>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>${spring.version}version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>${spring.version}version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-testartifactId>
<version>${spring.version}version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
<version>${mybatis.version}version>
dependency>
...
dependencies>
配置文件加载属性步骤
① 定义属性
<properties>
<spring.version>5.2.10.RELEASEspring.version>
<mybatis.version>3.5.6mybatis.version>
<jdbc.url>jdbc:mysql://192.168.1.224:3306/ssm_db?useSSL=falsejdbc.url>
properties>
② 配置文件中引用属性
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=${jdbc.url}
jdbc.username=root
jdbc.password=123456
③ 开启资源文件目录加载属性的过滤器
<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/resourcesdirectory>
<filtering>truefiltering>
resource>
resources>
build>
③ 在父工程中重新安装maven–>install
④ 配置maven打war包时,忽略web.xml检查
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-war-pluginartifactId>
<version>3.3.2version>
<configuration>
<failOnMissingWebXml>falsefailOnMissingWebXml>
configuration>
plugin>
plugins>
build>
属性分类 | 引用格式 | 示例 |
---|---|---|
自定义属性 | ${自定义属性名} | ${spring.version} |
内置属性 | ${内置属性名} | ${basedir} ${version} |
Setting属性 | ${Setting.属性名} | ${settings.localRepository} |
Java系统属性 | ${系统属性分类.系统属性名} | ${user.home} |
环境变量属性 | ${env.环境变量属性名} | ${env.JAVA_HOME} |
多环境开发:maven提供配置多种环境的设定,帮助开发者使用过程中快速切换环境
步骤
① 定义多环境
<profiles>
<profile>
<id>env_depid>
<properties>
<jdbc.url>jdbc:mysql://192.168.1.224:3306/ssm_db?useSSL=falsejdbc.url>
properties>
<activation>
<activeByDefault>trueactiveByDefault>
activation>
profile>
<profile>
<id>env_proid>
<properties>
<jdbc.url>jdbc:mysql://192.168.1.224:3306/ssm_db?useSSL=falsejdbc.url>
properties>
profile>
<profile>
<id>env_testid>
<properties>
<jdbc.url>jdbc:mysql://192.168.1.224:3306/ssm_db?useSSL=falsejdbc.url>
properties>
profile>
profiles>
② 使用多环境(构建过程)
mvn 指令 -P 环境定义id
例如:
mvn install -P pro_env
方式二:使用指令
mvn 指令 -D skipTests
范例:
mvn install -D skipTests
方式三:细粒度控制跳过测试(使用插件)
<plugin>
<artifactId>maven-surefire-pluginartifactId>
<version>2.22.1version>
<configuration>
<skipTests>falseskipTests>
<excludes>
<exclude>**/BookServiceTest.javaexclude>
excludes>
configuration>
plugin>
私服是一台独立的服务器,用于解决团队内部的资源共享与资源同步问题
Nexus
Sonatype公司的一款maven私服产品
下载地址:https://help.sonatype.com/repomanager3/download
① 下载nexus并解压(链接:https://pan.baidu.com/s/100enFQslOVQGeltjdOdikQ 提取码:wox3)
② 在终端(cmd),打开
进入解压后的nexus-3.30.1-01\bin目录下运行一下指令启动私服
nexus.exe /run nexus
③ 浏览器访问:http://localhost:8081/
登录,账号为admin
密码为:05108a80-849f-4bdf-9ef4-2d53cf9bcb13
密码在latest-win64\sonatype-work\nexus3目录下admin.password文件中
修改基础配置信息:
安装路径下etc目录中nexus-default.properties
修改服务器运行配置信息
安装目录中nexus.vmoptions文件保存有nexus服务器启动对应的配置信息,例如默认占用内存空间
仓库类别 | 英文名称 | 功能 | 关联操作 |
---|---|---|---|
宿主仓库 | hosted | 保存自主研发+第三方资源 | 上传 |
代理仓库 | proxy | 代理连接中央仓库 | 下载 |
仓库组 | group | 为仓库编组简化下载操作 | 下载 |
① 访问:http://localhost:8081/#admin/repository/repositories
创建两个仓库(Create Repository ==> maven2(hosted))
分别为example-snapshot和example-realase(记得改对应的Version policy)
② 修改maven配置文件settings.xml
在servers标签中添加(密码改成自己设置的)
<server>
<id>example-snapshotid>
<username>adminusername>
<password>adminpassword>
server>
<server>
<id>example-realaseid>
<username>adminusername>
<password>adminpassword>
server>
③ 私服访问路径
访问:http://localhost:8081/#admin/repository/repositories:maven-public
将我们创建的两个仓库添加到Menbers中并保存
在settings.xml配置文件的mirrors标签中添加
<mirror>
<id>maven-publicid>
<mirrorOf>*mirrorOf>
<url>http://localhost:8081/repository/maven-public/url>
<blocked>trueblocked>
mirror>
mirrors>
在pom.xml中配置前工程保存在私服中的具体位置
<distributionManagement>
<repository>
<id>example-releaseid>
<url>http://localhost:8081/repository/example-release/url>
repository>
<snapshotRepository>
<id>example-snapshotid>
<url>http://localhost:8081/repository/example-snapshot/url>
snapshotRepository>
distributionManagement>
发布指令mvn deploy
换源:
http://localhost:8081/#admin/repository/repositories:maven-central
修改Remote storage