分模块开发对工程有什么好处?
目的:项目的扩展性变强了,方便其他项目引用相同的功能。
一个完整的工程依据什么来进行模块的拆分?
注意事项:
mvn install
注意事项:
依赖管理指当前项目运行所需的jar,一个项目可以设置多个依赖
格式:
<dependencies>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.2.10.RELEASEversion>
dependency>
dependencies>
A依赖B,B依赖C,A是否依赖于C呢?
A依赖B,B依赖C,如果A不想将C依赖进来,是否可以做到?
<dependency>
<groupId>com.itheimagroupId>
<artifactId>maven_03_pojoartifactId>
<version>1.0-SNAPSHOTversion>
<optional>falseoptional>
dependency>
A依赖B,B依赖C,如果A不想将C依赖进来,是否可以做到?
<dependency>
<groupId>com.itheimagroup Id>
<artifactId>maven_04_daoartifactId>
<version>1.0-SNAPSHOTversion>
<exclusions>
<exclusion>
<groupId>log4jgroupId>
<artifactId>log4jartifactId>
exclusion>
<exclusion>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
exclusion>
exclusions>
dependency>
什么叫聚合?
聚合:将多个模块组织成一个整体,同时进行项目构建的过程称为聚合
聚合工程:通常是一个不具有业务功能的”空“工程(有且仅有一个pom文件)
作用:使用聚合工程可以将多个工程编组,通过对聚合工程进行构建,实现对所包含的模块进行同步构建
工程的打包方式有哪几种?
<packaging>pompackaging>
注意事项:
<modules>
<module>../maven_ssmmodule>
<module>../maven_pojomodule>
<module>../maven_daomodule>
modules>
注意事项:
什么叫继承?
<packaging>pompackaging>
注意事项:
<dependencies>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.2.10.RELEASEversion>
dependency>
……
dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>druidartifactId>
<version>1.1.16version>
dependency>
……
dependencies>
dependencyManagement>
<parent>
<groupId>com.itheimagroupId>
<artifactId>maven_parentartifactId>
<version>1.0-SNAPSHOTversion>
<relativePath>../maven_parent/pom.xmlrelativePath>
parent>
<dependencies>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>druidartifactId>
dependency>
dependencies>
注意事项:
聚合和继承的作用?
定义属性有什么好处?
<properties>
<spring.version>5.2.10.RELEASEspring.version>
<junit.version>4.12junit.version>
properties>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-contextartifactId>
<version>${spring.version}version>
dependency>
<properties>
<spring.version>5.2.10.RELEASEspring.version>
<junit.version>4.12junit.version>
<jdbc.url>jdbc:mysql://127.0.0.1:3306/ssm_dbjdbc.url>
properties>
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=${jdbc.url}
jdbc.username=root
jdbc.password=root
<build>
<resources>
<resource>
<directory>${project.basedir}/src/main/resourcesdirectory>
<filtering>truefiltering>
resource>
resources>
build>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-war-pluginartifactId>
<version>3.2.3version>
<configuration>
<failOnMissingWebXml>falsefailOnMissingWebXml>
configuration>
plugin>
项目开发的版本可以分为哪几种?
多环境配置有什么好处?
<profiles>
<profile>
<id>env_depid>
<properties>
<jdbc.url>jdbc:mysql://127.0.0.1:3306/ssm_dbjdbc.url>
properties>
<activation>
<activeByDefault>trueactiveByDefault>
activation>
profile>
<profile>
<id>env_proid>
……
profile>
profiles>
【命令】:
mvn 指令 –P 环境定义id
【范例】:
mvn install –P pro_env
跳过测试会不会影响项目的构建过程?
注意事项:
<plugin>
<artifactId>maven-surefire-pluginartifactId>
<version>2.22.1version>
<configuration>
<skipTests>trueskipTests>
<includes>
<include>**/User*Test.javainclude>
includes>
<excludes>
<exclude>**/User*TestCase.javaexclude>
excludes>
configuration>
plugin>
这里的私服和平时我们听的国服、体验服、欧服等等有什么区别?
团队开发现状分析
私服是一台独立的服务器,用于解决团队内部的资源共享与资源同步问题
Nexus
启动服务器(命令行启动)
访问服务器(默认端口:8081)
修改基础配置信息
修改服务器运行配置信息
私服仓库分为哪几种?
往私服上传资源是否需要身份认证?在哪里设置认证信息?
【第一步】在maven的settings.xml中
<mirror>
<id>nexus-heimaid>
<mirrorOf>*mirrorOf>
<url>http://localhost:8081/repository/maven-public/url>
mirror>
【第二步】在nexus中设置允许匿名下载,如果不允许将不会从私服中下载依赖
如果私服中没有对应的jar,会去中央仓库下载,速度很慢。可以配置让私服去阿里云中下载依赖。
【第一步】配置本地仓库访问私服的权限(在maven的settings.xml的servers标签中配置)
<server>
<id>heima-nexusid>
<username>adminusername>
<password>123456password>
server>
【第一步】配置当前项目访问私服上传资源的保存位置(项目的pom.xml文件中配置)
<distributionManagement>
<repository>
<id>heima-nexusid>
<url>http://localhost:8081/repository/heima-releases/url>
repository>
<snapshotRepository>
<id>heima-nexusid>
<url>http://localhost:8081/repository/heima-snapshots/url>
snapshotRepository>
distributionManagement>
注意:要和maven的settings.xml中server中定义的
【第三步】发布资源到私服命令
mvn deploy
对应的用户名和密码–>
heima-nexus
http://localhost:8081/repository/heima-releases/
heima-nexus
http://localhost:8081/repository/heima-snapshots/
**==注意:要和maven的settings.xml中server中定义的\heima-nexus\ 对应==**
【第三步】发布资源到私服命令
mvn deploy