(1)简单mavn工程创建及操作
1、创建简单的工程
mvn archetype:create -DgroupId=org.sonatype.mavenbook.ch03 -DartifactId=simple -DpackageName=org.sonatype.mavenbook
2、执行mvn package命令执行过程如下:(生命周期,在mavn进行打包过程中,执行的顺序如下)
resources:resources \
compiler:compile \
resources:testResources \
compiler:testCompile \
surefire:test \
jar:jar
3、maven坐标信息(在pom.xml中的信息)
<groupId>org.sonatype.mavenbook.ch03</groupId>
<artifactId>simple</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
4、转eclipse工程
(1):简单转换
mvn eclipse:eclipse
(2):会将工程将框架转换为eclipse工程,并从远程下载jar包到本地仓库(window下是(C:\Documents and Settings\${username}\.m2\repository)
mvn eclipse:eclipse -DdownloadSources=true
(3):path-to-eclipse-workspace是本机的eclipse的worksapce的路径。执行后maven会在eclipse中建立一个M2_REPO环境变量,并将其中所有的jar包引入到工程中,完全自动化
mvn -Declipse.workspace=<path-to-eclipse-workspace> eclipse:add-maven-repo
5、运行main函数类
mvn install
mvn exec:java -Dexec.mainClass=org.sonatype.mavenbook.weather.Main
6、查看插件用法的命令
mvn help:describe -Dplugin=exec -Dfull
7、查看依赖的类
mvn dependency:resolve
8、查看整个项目依赖的类树结构
mvn dependency:tree
9、查看完整的依赖踪迹
mvn install -X
10、自动化测试程序
mvn test
11、通过命令行的方式忽略测试失败结果信息
mvn test -Dmaven.test.failture.ignore=true
12、跳过单元测试命令
mvn install -Dmaven.test.skip=true
13、Maven Assembly 插件的预定义装配描述符生成一个可分发的 JAR 文件的过程,该文件包含了项目的二进制文件和所有的依赖。
执行命令:mvn install assembly:assembly
14、包含所有依赖的jar运行方式如下:
java -cp simple-weather-jar-width-dependency.jar org.sonatype.mavenbook.weather.Main
问题:当加入新的依赖包时,可执行mvn install下载包,但在eclipse中需要手动加入包才能正常操作信息。
(2)简单web应用工程创建和操作
1、创建web工程的命令如下:
mvn archetype:create -DgroupId=org.sonatype.mavenbook.ch05 -DartifactId=simple-webapp -DpackageName=org.sonatype.mavenbook.web -DarchetypeArtifactId=mavn-archetype-webapp
2、配置Maven Jetty 插件,在 Maven 中运行你的 web应用
mvn jetty:run
3、清理重新打包操作
mvn clean install
(3)多个模块工程的创建和操作
注意问题
(1)父工程和子工程之间的关联关系要清楚
如果父工程和子工程在同一目录下,配置路径一定要正确。同时,子工程要添加<relativePath>节点指向父工程的pom.xml文件。
父工程依赖的jar包或插件,在子工程中无需配置,因为子工程已继承父工程的配置,包括groupId、version等信息。
结构图一
simple-parent——————————simple—weather
|
———————simple-webapp
配置信息如下所示:
1、simple-parent
<modules>
<module>simple-weather</module>
<module>simple-webapp</module>
</modules>
2、simple—weather
<!-- 子模块中无需定义groupId和version信息,这些信息都从父模块中继承 -->
<parent>
<groupId>org.sonatype.mavenbook</groupId>
<artifactId>simple-parent</artifactId>
<version>1.0</version>
</parent>
<artifactId>simple-weather</artifactId>
<packaging>jar</packaging>
<name>Simple-Weather</name>
3、simple-webapp
<!-- 子模块中无需定义groupId和version信息,这些信息可以从父模块中继承 -->
<parent>
<groupId>org.sonatype.mavenbook</groupId>
<artifactId>simple-parent</artifactId>
<version>1.0</version>
</parent>
<artifactId>simple-webapp</artifactId>
<packaging>war</packaging>
<name>simple-webapp</name>
<url>http://maven.apache.org</url>
由于simple-webapp依赖于simple—weather,此时需要在<dependences>节点中添加工程依赖
<!-- 该工程依赖weather工程,需要将weather工程的依赖添加进来-->
<dependency>
<groupId>org.sonatype.mavenbook</groupId>
<artifactId>simple-weather</artifactId>
<version>1.0</version>
</dependency>
结构图二
|——simple-parent
|——simple—weather
|——simple-webapp
配置信息如下所示:
1、simple-parent
<modules>
<module>../simple-weather</module>
<module>../simple-webapp</module>
</modules>
2、simple—weather
<!-- 子模块中无需定义groupId和version信息,这些信息都从父模块中继承 -->
<parent>
<groupId>org.sonatype.mavenbook</groupId>
<artifactId>simple-parent</artifactId>
<version>1.0</version>
<!-- 如果没有该属性则该工程必须放到simpe-parent下 -->
<relativePath>../simple-parent/pom.xml</relativePath>
</parent>
<artifactId>simple-weather</artifactId>
<packaging>jar</packaging>
<name>Simple-Weather</name>
3、simple-webapp
<!-- 子模块中无需定义groupId和version信息,这些信息可以从父模块中继承 -->
<parent>
<groupId>org.sonatype.mavenbook</groupId>
<artifactId>simple-parent</artifactId>
<version>1.0</version>
<!-- 如果没有该属性则该工程必须放到simpe-parent下 -->
<relativePath>../simple-parent/pom.xml</relativePath>
</parent>
<artifactId>simple-webapp</artifactId>
<packaging>war</packaging>
<name>simple-webapp</name>
<url>http://maven.apache.org</url>
由于simple-webapp依赖于simple—weather,此时需要在<dependences>节点中添加工程依赖
<!-- 该工程依赖weather工程,需要将weather工程的依赖添加进来-->
<dependency>
<groupId>org.sonatype.mavenbook</groupId>
<artifactId>simple-weather</artifactId>
<version>1.0</version>
</dependency>
(4)多模块工程的优化原则
1、将各个工程中用到的重复jar包提取到parent的pom.xml中,通过properties属性标注版本信息,子模块只记录jar包,而不记录版本号
父模块定义如下:
<properties>
<hibernate.annotations.version>3.3.0.ga</hibernate.annotations.version>
<hsqldb.version>1.8.0.7</hsqldb.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>${hibernate.annotations.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>${hibernate.annotations.version}</version>
</dependency>
<dependencies>
<dependencyManagement>
子模块中定义如下:
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>simple-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</dependency>
</dependencies>
2、子模块都应用父模块的grouId和version,
<parent>
<groupId>org.sonatype.mavenbook</groupId>
<artifactId>simple-parent</artifactId>
<version>1.0</version>
<!-- 如果没有该属性则该工程必须放到simpe-parent下-->
<relativePath>../simple-parent/pom.xml</relativePath>
</parent>
<artifactId>simple-persist</artifactId>
<packaging>jar</packaging>
同时,该模块依赖其他模块时采用如下方式配置:
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>simple-model</artifactId>
<version>${project.version}</version>
</dependency>
3、采用mvn dependency:analyze将每个工程中的间接依赖添加到每个模块的工程中。
分享到:
相关推荐
《Maven权威指南》的学习笔记主要涵盖了Maven的基础概念、工作原理以及常用操作。Maven是一个项目管理和综合工具,主要用于Java项目的构建、依赖管理和项目信息管理。它通过使用一种标准化的项目对象模型(Project ...
《Maven权威指南》是一本全面介绍Maven的书籍,中文版使得国内开发者能够更方便地学习。书中详细解释了Maven的生命周期、插件、仓库管理以及高级特性,如聚合项目、多模块项目和自定义构建流程。通过深入阅读这本书...
总的来说,《Maven权威指南》是Java开发者学习和掌握Maven的必备读物,它不仅帮助你理解Maven的工作原理,还能教会你如何高效地利用Maven来管理项目,提高开发效率。无论你是初学者还是经验丰富的开发者,这本书都将...
包含:Maven2_基础教程.pdf\《Maven权威指南》-电子书下载(PDF)(中文)\maven2完全使用手册.docx\Maven3实战笔记04Maven的生命周期和插件.doc\Maven实战.pdf\Maven学习指南.pdf
包含了<<maven权威指南>>,maven官方api使用等,自己的maven笔记等详细的maven使用教程,同时还包含了maven客户端搭建,服务器配置于搭建的详细资料,是以整套的maven学习资料.
《Maven权威指南中文版》将指导你理解和使用Maven生命周期,创建和管理多模块项目,以及配置Maven插件来实现特定的构建任务。书中还涵盖了设置Maven仓库、解决依赖冲突以及优化构建速度等实用技巧。 【Markdown语法...
《Maven权威指南》是Maven领域的经典之作,详细介绍了Maven的基本概念、核心功能和配置细节,包括项目的结构、POM(Project Object Model)配置文件的使用,以及如何通过Maven管理项目依赖。书中还涵盖了Maven的插件...
《Spring in Action》是关于Spring框架的一本权威指南,它深入浅出地介绍了Spring的核心概念和技术,对于理解和应用Spring框架有着重要的指导价值。在本文中,我们将围绕Spring框架的源码解析、工具使用以及相关学习...