idea中配置meaven,需要在起始页中进行配置。如果在项目中进行配置则只对当前项目有效。
-
aliyunmaven -
* -
阿里云公共仓库 -
https://maven.aliyun.com/repository/public -
tencent -
tencent maven mirror -
https://mirrors.tencent.com/nexus/repository/maven-public/ -
*
默认使用jdk1.8
- <profile>
- <id>jdk-1.8</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <jdk>1.8</jdk>
- </activation>
- <properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
- </properties>
- </profile>
- <build>
- <!--设置插件-->
- <plugins>
- <!--具体的插件配置-->
- <plugin>
- <groupId>org.apache.tomcat.maven</groupId>
- <artifactId>tomcat7-maven-plugin</artifactId>
- <version>2.1</version>
- <configuration>
- <port>80</port>
- <path>/</path>
- </configuration>
- </plugin>
- </plugins>
- </build>
依赖具有传递性。
可选依赖指对外隐藏当前所依赖的资源——即不透明
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- <optional>true</optional>
- </dependency>
排除依赖指主动断开依赖的资源,被排除的资源无需指定版本
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- <exclusions>
- <exclusion>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-core</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
依赖的jar默认情况可以在任何地方使用,可以通过scpoe
标签设定其作用范围
作用范围:
scope | 主代码 | 测试代码 | 打包 | 范例 |
---|---|---|---|---|
compile(默认) | Y | Y | Y | log4j |
test | Y | junit | ||
provided | Y | Y | servlet-api | |
runtime | Y | jdbc |
为了让构建过程自动化完成,Maven 设定了三个生命周期,生命周期中的每一个环节对应构建过程中的一个操作。
clean生命周期
site生命周期
default生命周期
插件与生命周期内的阶段绑定,在执行到对应生命周期时执行对应的插件功能。一个插件可对应多个阶段。
可以通过插件自定义其他功能。
- <!--在执行到generate-test-resources生命周期时,将源代码和测试代码打成源码包-->
- <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>
- <goal>test-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>
参与聚合操作的模块最终执行顺序与模块间的依赖关系有关,与配置顺序无关。
通过继承可以实现在子工程中沿用父工程中的配置。
- <!--在子工程中,定义当前工程的父工程-->
- <parent>
- <groupId>fun.it</groupId>
- <artifactId>ssm</artifactId>
- <version>1.0-SNAPSHOT</version>
- <!--填写父工程的pom文件-->
- <relativePath>../ssm/pom.xml</relativePath>
- </parent>
继承依赖定义
在父工程中定义依赖管理
- <dependencyManagement>
-
- <dependencies>
-
- <dependency>
- <groupId>org.springframeworkgroupId>
- <artifactId>spring-contextartifactId>
- <version>5.1.9.RELEASEversion>
- dependency>
- <dependencies>
- <dependencyManagement>
继承依赖使用
在子工程中定义依赖关系,无需声明依赖版本,版本参照父工程中依赖的版本
- <dependencies>
- <!--spring环境-->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- </dependency>
- </dependencies>
继承:用于快速配置
聚合:用于快速构建项目
相同点:
不同点:
自定义属性
自定义属性等同于定义变量,方便统一维护
- <!--定义-->
- <properties>
- <spring.version>5.1.9.RELEASE</spring.version>
- <junit.version>4.12</junit.version>
- </properties>
-
- <!--调用-->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>${spring.version}</version>
- </dependency>
内置属性
- <systemPath>${basedir}/src/main/resources/lib/kingbasejdbc4.jarsystemPath>
- ${version}
Setting属性
使用Maven配置文件setting.xml中的标签属性,用于动态配置
${settings.localRepository}
Java系统属性
用于读取Java系统属性
$(user.home)
环境变量属性
使用Maven配置文件setting.xml中的标签属性,用于动态配置
${env.JAVA_HOME}
工程版本
使其可以在任意配置文件中加载pom文件中定义的属性
调用格式:${jdbc.url}
配置资源文件对应的信息:
- <resources>
- <resource>
- <!— 设定配置文件对应的位置目录,支持使用属性动态设定路径 -->
- <directory>${project.basedir}/src/main/resources</directory>
- <!-- 开启对配置文件的资源加载过滤 -->
- <filtering>true</filtering>
- </resource>
- </resources>
- <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>dev_envid>
- ……
- profile>
- profiles>
加载指定环境:
mvn install -P pro_env
mvn 指令 -D skipTests
执行的指令声明周期必须包含测试环节
- <plugin>
- <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>
配置本地仓库访问私服的权限(setting.xml):
- <servers>
- <server>
- <id>heima-release</id>
- <username>admin</username>
- <password>admin</password>
- </server>
- <server>
- <id>heima-snapshots</id>
- <username>admin</username>
- <password>admin</password>
- </server>
- </servers>
配置本地仓库资源来源(setting.xml):
- <mirrors>
- <mirror>
- <id>nexus-heima</id>
- <mirrorOf>*</mirrorOf>
- <url>http://localhost:8081/repository/maven-public/</url>
- </mirror>
- </mirrors>
配置当前项目访问私服上传资源的保存位置(pom.xml):
- <distributionManagement>
- <repository>
- <id>heima-release</id>
- <url>http://localhost:8081/repository/heima-release/</url>
- </repository>
- <snapshotRepository>
- <id>heima-snapshots</id>
- <url>http://localhost:8081/repository/heima-snapshots/</url>
- </snapshotRepository>
- </distributionManagement>