在项目里用了快一年的maven了,最近突然发现maven项目在eclipse中build时非常慢,因为经常用clean install命令来build项目,也没有管那么多,但最近实在受不了乌龟一样的build速度,于是下定决心再看看《maven实战》吧,

        对于我来说,maven最主要的作用有两个方面,一个是对jar包的依赖解决功能,自己管理jar包,另一个功能就是项目的构建,打包部署。现在我觉得最重要的还是maven的生命周期和插件机制,下面就来总结一下吧。

参考url:http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html

1、三套生命周期

对于maven的生命周期来说,共有三个相互独立的生命周期,分别是clean、default、site。clean生命周期目的是清理项目,default生命周期目的是构建项目,而site生命周期目的是建立项目站点。
     每个生命周期分别包含一些阶段,这些阶段是有顺序的,并且后面的阶段依赖于前面的阶段。如clean生命周期包含pre-clean、clean和post-clean三个阶段,如果执行clean阶段,则会先执行pre-clean阶段。
     较之于生命周期阶段有前后依赖关系,三套生命周期本身是相互独立的,用户可以仅调用clean生命周期的某个阶段,也可以不执行clean周期,而直接执行default生命周期的某几个阶段。

2、clean生命周期

clean生命周期包含三个阶段,主要负责清理项目,如下:

pre-clean executes processes needed prior to the actual project cleaning
clean remove all files generated by the previous build
post-clean executes processes needed to finalize the project cleaning

3、default生命周期

default生命周期定义了真正构建时所需要执行的所有步骤,包含的阶段如下:

validate validate the project is correct and all necessary information is available.
initialize initialize build state, e.g. set properties or create directories.
generate-sources generate any source code for inclusion in compilation.
process-sources process the source code, for example to filter any values.
generate-resources generate resources for inclusion in the package.
process-resources copy and process the resources into the destination directory, ready for packaging.
compile compile the source code of the project.
process-classes post-process the generated files from compilation, for example to do bytecode enhancement on Java classes.
generate-test-sources generate any test source code for inclusion in compilation.
process-test-sources process the test source code, for example to filter any values.
generate-test-resources create resources for testing.
process-test-resources copy and process the resources into the test destination directory.
test-compile compile the test source code into the test destination directory
process-test-classes post-process the generated files from test compilation, for example to do bytecode enhancement on Java classes. For Maven 2.0.5 and above.
test run tests using a suitable unit testing framework. These tests should not require the code be packaged or deployed.
prepare-package perform any operations necessary to prepare a package before the actual packaging. This often results in an unpacked, processed version of the package. (Maven 2.1 and above)
package take the compiled code and package it in its distributable format, such as a JAR.
pre-integration-test perform actions required before integration tests are executed. This may involve things such as setting up the required environment.
integration-test process and deploy the package if necessary into an environment where integration tests can be run.
post-integration-test perform actions required after integration tests have been executed. This may including cleaning up the environment.
verify run any checks to verify the package is valid and meets quality criteria.
install install the package into the local repository, for use as a dependency in other projects locally.
deploy done in an integration or release environment, copies the final package to the remote repository for sharing with other developers and projects.

4、site生命周期

siet生命周期的目的是建立和发布项目站点,maven能够基于POM所包含的信息,自动生成一个友好的站点,方便团队交流和发布项目信息,包含的阶段如下:

pre-site executes processes needed prior to the actual project site generation
site generates the project's site documentation
post-site executes processes needed to finalize the site generation, and to prepare for site deployment
site-deploy deploys the generated site documentation to the specified web server

5、命令行与生命周期

从命令行执行maven任务的最主要方式就是调用maven的生命周期阶段。需要注意的是,各个生命周期是相互独立的,而一个生命周期的阶段是有前后依赖关系的。例子如下:
     1、$mvn clean :该命令调用clean生命周期的clean阶段。实际执行的阶段为clean生命周期的pre-clean和clean阶段。
     2、$mvn test:该命令调用default生命周期的test阶段。实际调用的是default生命周期的validate、initialize等,直到test的所有阶段。
     3、$mvn clean install:该命令调换用clean生命周期的clean阶段和default生命周期的instal阶段。

6、插件目标

maven的核心仅仅定义了抽象的生命周期,具体的任务是交由插件完成的,插件以独立的形式存在。
     对于插件本身,为了能够复用代码,它往往能够完成多个任务。如maven-dependency-plugin有十多个目标,每个目标对应了一个功能,如 dependency:analyze、 dependency:tree和dependency:list。这是一种通用的写法,冒号前面是插件前缀,后面是该插件的目标。

7、插件绑定

maven的生命周期与插件相互绑定,用以完成实际的构建任务。具体而言,是生命周期的阶段与插件的目标相互绑定,已完成某个具体的构建任务。例如项目编译这一任务,它对应了default生命周期的compile阶段,而maven-compiler-plugin这一插件的compile目标能够完成该任务,因此将他们绑定。

7.1内置绑定

maven在核心为一些主要的生命周期接到绑定了很多插件的目标,如下:
     clean和site生命周期相对简单。

clean clean:clean
site site:site
site-deploy site:deploy

default生命周期与插件目标的绑定关系有点复杂一些。这是因为对于任何项目来说,例如jar项目和war项目,他们的项目清理和站点生成任务是一样的,不过构建过程会有区别。例如jar项目需要打成jar包,而war项目需要打成war包。
     由于项目的打包类型会影响构建的具体过程,因此,default生命周期的阶段与插件目标的绑定关系有项目打包类型所决定的,打包类型是通过pom中的packaging元素定义的。最常见的打包类型是jar,它也是默认的打包类型。基于该打包类型,default生命周期的内置绑定关系如下:

process-resources resources:resources
compile compiler:compile
process-test-resources resources:testResources
test-compile compiler:testCompile
test surefire:test
package ejb:ejb or ejb3:ejb3 or jar:jar or par:par or rar:rar or war:war
install install:install
deploy deploy:deploy

7、2自定义绑定

除了内置绑定以为,用户还能够自己选择奖某个插件目标绑定到生命周期的某个阶段以执行更多更特色的任务。

  1. <!-- 自动复制资源文件件到根目录 -->
  2. <plugin>
  3. <groupId>org.apache.maven.plugins</groupId>
  4. <artifactId>maven-resources-plugin</artifactId>
  5. <version>2.6</version>
  6. <configuration>
  7. <includeEmptyDirs>true</includeEmptyDirs>
  8. <encoding>GBK</encoding>
  9. <nonFilteredFileExtensions>
  10. <nonFilteredFileExtension>exe</nonFilteredFileExtension>
  11. <nonFilteredFileExtension>zip</nonFilteredFileExtension>
  12. <nonFilteredFileExtension>vbs</nonFilteredFileExtension>
  13. <nonFilteredFileExtension>sh</nonFilteredFileExtension>
  14. </nonFilteredFileExtensions>
  15. </configuration>
  16. <executions>
  17. <execution>
  18. <id>copy-resources</id>
  19. <phase>validate</phase>
  20. <goals>
  21. <goal>copy-resources</goal>
  22. </goals>
  23. <configuration>
  24. <includeEmptyDirs>true</includeEmptyDirs>
  25. <outputDirectory>${project.build.directory}</outputDirectory>
  26. <excludes>
  27. <exclude>agentmanager.jsmooth</exclude>
  28. <exclude>assembly.xml</exclude>
  29. </excludes>
  30. <resources>
  31. <resource>
  32. <directory>src/main/resources/</directory>
  33. <filtering>true</filtering>
  34. </resource>
  35. </resources>
  36. </configuration>
  37. </execution>
  38. </executions>
  39. </plugin>

如上图定义了一个id为copy-resources的任务,绑定到default生命周期的validate阶段,绑定的插件为maven-resources-plugin,插件目标为copy-resources。即用插件的copy-resources功能来实现项目资源文件的拷贝。

  1. <!-- 自动复制maven依赖包到lib目录 -->
  2. <plugin>
  3. <groupId>org.apache.maven.plugins</groupId>
  4. <artifactId>maven-dependency-plugin</artifactId>
  5. <version>2.1</version>
  6. <executions>
  7. <execution>
  8. <id>copy</id>
  9. <phase>install</phase>
  10. <goals>
  11. <goal>copy-dependencies</goal>
  12. </goals>
  13. <configuration>
  14. <outputDirectory>lib</outputDirectory>
  15. </configuration>
  16. </execution>
  17. </executions>
  18. </plugin>

同上,定义了一个id为copy的任务,利用插件maven-dependency-plugin的copy-dependencies目标绑定到default生命周期的install阶段,来实现项目依赖的jar包的自动复制。

当插件目标被绑定到不同的生命周期阶段时候,其执行顺序会有生命周期阶段的先后顺序决定的。如果多个目标被绑定到同一个阶段,他们的执行顺序是由插件声明的先后顺序决定目标的执行顺序

8、插件配置

用户可以配置插件目标的参数,进一步调整插件目标所执行的任务。

8、1命令行插件配置

如 $mvn install -Dmaven.test.skip=true 的意义即跳过测试步骤。
      参数-D的java自带的,其功能是通过命令行设置一个java系统属性,maven简单地重用了该参数以实现插件参数的配置。

8、2pom中插件全局配置

如项目编译使用1.6版本的源文件,生成与JVM1.6兼容的字节码文件,如下:

  1. <plugin>
  2. <groupId>org.apache.maven.plugins</groupId>
  3. <artifactId>maven-compiler-plugin</artifactId>
  4. <version>2.3.2</version>
  5. <configuration>
  6. <source>1.6</source>
  7. <target>1.6</target>
  8. </configuration>
  9. </plugin>

9、获取插件描述信息

$mvn help:describe-Dplugin=org.apache.maven.plugins:maven-compiler-plugin:2.1  来获取插件的详细信息
    可以简化为:
    $mvn help:describe-Dplugin=compiler
    如果仅仅描述插件目标的信息,可以加上goal参数:
    $mvn help:describe-Dplugin=compiler-Dgoal=compile
    如果想输出更详细的信息,可以加上detail参数:
    $mvn help:describe-Dplugin=compiler-Ddetail

(二):灵活的构建

原文地址:http://blog.csdn.net/chaofanwei/article/details/36652373

参考官方url:http://maven.apache.org/guides/index.html

一个优秀的构建系统必须足够灵活,应该能够让项目在不同的环境下都能成功构建。maven为了支持构建的灵活性,内置了三大特性,即:属性、profile和资源过滤

1、maven属性

maven属性分6类:
    1、内置属性:如${basedir}表示项目根目录,${version}表示项目版本
    2、POM属性:用户可以引用pom文件中对应的值。如:
         ${basedir} 项目根目录
         ${project.build.directory} 构建目录,缺省为target
         ${project.build.outputDirectory} 构建过程输出目录,缺省为target/classes
         ${project.build.finalName} 产出物名称,缺省为${project.artifactId}-${project.version}
         ${project.packaging} 打包类型,缺省为jar
         ${project.xxx} 当前pom文件的任意节点的内容 
    3、自定义属性:用户可以在pom的<properties>元素下自定义maven属性。
    4、setting属性:用户可以使用以settings开头的属性引用settings.xml中xml元素的值,如${settings.localRepository}指向用户本地仓库的地址。
    5、java系统属性:maven可以使用当前java系统的属性,如${user.home}指向了用户目录。
    6、环境变量属性:所有环境变量都可以使用以env.开头的属性。如:${env.JAVA_HOE}。

2、资源过滤

这里所谓的资源:也就就是指src/main/resources和src/test/resources文件下的所有文件,默认情况下,这些文件会被复制到classpath下面,即target/classes下面。
     所谓资源过滤,就是过滤这些文件夹下面的文件里面的内容,看里面的maven变量是否需要替换。默认情况下,只有pom.xml里面的变量才会被替换,资源文件是不会被过滤的,但是可以设置,如下:

  1. <build>
  2. <finalName>agentmanager</finalName>
  3. <sourceDirectory>src/main/java</sourceDirectory>
  4. <resources>
  5. <!-- 控制资源文件的拷贝 -->
  6. <resource>
  7. <directory>src/main/resources</directory>
  8. <excludes>
  9. <exclude>**/jre.zip</exclude>
  10. <exclude>**/jre.tar</exclude>
  11. <exclude>agentmanager.jsmooth</exclude>
  12. <exclude>assembly.xml</exclude>
  13. </excludes>
  14. <targetPath>${project.build.directory}</targetPath>
  15. </resource>
  16. <resource>
  17. <directory>src/main/resources/conf</directory>
  18. <targetPath>${basedir}/conf</targetPath>
  19. <filtering>true</filtering>
  20. </resource>
  21. </resources>
  22. </build>

如jdbc.properties

  1. jdbc.driverClassName=${db.driver}
  2. jdbc.url=${db.url}
  3. jdbc.username=${db.user}
  4. jdbc.password=${db.pwd}

profile文件

  1. <profiles>
  2. <profile>
  3. <id>dev</id>
  4. <properties>
  5. <db.driver>oracle.jdbc.driver.OracleDriver</db.driver>
  6. <db.url>jdbc:oracle:thin:@10.252.48.3:1521:dbname</db.url>
  7. <db.user>username</db.user>
  8. <db.pwd>userpwd</db.pwd>
  9. </properties>
  10. </profile>
  11. <profile>
  12. <id>test</id>
  13. <properties>
  14. <db.driver>oracle.jdbc.driver.OracleDriver</db.driver>
  15. <db.url>jdbc:oracle:thin:@10.252.48.3:1521:testdbname</db.url>
  16. <db.user>testusername</db.user>
  17. <db.pwd>testuserpwd</db.pwd>
  18. </properties>
  19. </profile>
  20. </profiles>

在构建时可以使用-P参数激活一个或多个profile,多个之间用逗号分隔
如 mvn clean install -Pdev

3、maven profile

上面例子应该可以看出profile是做什么的,其实就相当于定义了一系列的profile变量,在具体构建时可用使用其中的某个profile去变量替换资源文件。
      激活profile的方式有很多,如命令行激活(上面),settings文件显式激活、系统属性激活、操作系统环境激活、默认激活、文件存在与否激活等,具体可以参考官网资料

3.1 profile的种类

根据需要,可以在以下文件声明profile。
      1、pom.xml 针对当前项目
      2、用户 settings.xml 用户目录下的.m2/settings.xml, 对当前用户的所有项目有效。
      3、全局 settings.xml 即maven安装目录下的conf/settings.xml。对本机上的所有项目有效。

4、web资源过滤

在maven的web项目里面,除了上面所说的资源文件(src/main/resources)之外,还有一类叫做web资源目录,即src/main/webapp下面的js、css等等。默认情况下,这些目录是不被资源过滤的,开启的命令如下:

    1. <plugin>
    2. <groupId>org.apache.maven.plugins</groupId>
    3. <artifactId>maven-war-plugin</artifactId>
    4. <version>2.1.1</version>
    5. <configuration>
    6. <webResources>
    7. <resource>
    8. <directory>src/main/webapp</directory>
    9. <filtering>true</filtering>
    10. <includes>
    11. <include>**/*.css</include>
    12. <include>**/*.js</include>
    13. </includes>
    14. </resource>
    15. </webResources>
    16. </configuration>
    17. </plugin>

原文地址:http://blog.csdn.net/chaofanwei/article/details/36197183

深入理解maven及应用--转的更多相关文章

  1. 深入理解maven与应用(二):灵活的构建

    深入理解maven及应用(一):生命周期和插件 參考官方url:http://maven.apache.org/guides/index.html 一个优秀的构建系统必须足够灵活,应该可以让项目在不同 ...

  2. Maven - 深入理解maven构建生命周期和各种plugin插件

    作者:亚当-adam 来源:CSDN 原文:https://blog.csdn.net/zhaojianting/article/details/80321488 版权声明:本文为博主原创文章,转载请 ...

  3. 理解maven

    1.理解“仓库” 首次运行完mvn -version后,会在用户目录下创建一个.m2的目录(比如:C:\Users\当前用户名\.m2\),这个目录是maven的“本地仓库”,仓库是maven中一个很 ...

  4. 理解maven的核心概念

    原文出处:http://www.cnblogs.com/holbrook/archive/2012/12/24/2830519.html 好久没进行java方面的开发了,最近又完成了一个java相关的 ...

  5. 理解maven中SNAPSHOT版本的作用

    https://leokongwq.github.io/2017/08/24/understanding-maven-snapshot.html 一次针对现有的http服务开发了一个SNAPSHOT版 ...

  6. Maven(三)理解Maven核心概念

    转载自: http://www.cnblogs.com/holbrook/archive/2012/12/24/2830519.html 本文以类图的方式,介绍maven核心的12个概念以及相互之间的 ...

  7. Maven学习总结(18)——深入理解Maven仓库

    一.本地仓库(Local Repository) 本地仓库就是一个本机的目录,这个目录被用来存储我们项目的所有依赖(插件的jar包还有一些其他的文件),简单的说,当你build一个Maven项目的时候 ...

  8. 理解Maven中的SNAPSHOT版本和正式版本

    Maven中建立的依赖管理方式基本已成为Java语言依赖管理的事实标准,Maven的替代者Gradle也基本沿用了Maven的依赖管理机制.在Maven依赖管理中,唯一标识一个依赖项是由该依赖项的三个 ...

  9. (转)理解maven命令package、install、deploy的联系与区别

    我们在用maven构建java项目时,最常用的打包命令有mvn package.mvn install.deploy,这三个命令都可完成打jar包或war(当然也可以是其它形式的包)的功能,但这三个命 ...

随机推荐

  1. 你还记的那一年你我学习的-->>用表组织数据*(数据表)

    不知不觉,踏上IT之路,光阴似箭,日月如梭.虽好像回到从前,回到那个无忧无虑的童年,回到那个花样少年的青春;回到那个年少幼稚的小学;回到那个整天幻想的初中;回到那个顽强不屈,誓死不弃的高中;回到那个整 ...

  2. Android笔记——Android中数据的存储方式(二)

    我们在实际开发中,有的时候需要储存或者备份比较复杂的数据.这些数据的特点是,内容多.结构大,比如短信备份等.我们知道SharedPreferences和Files(文本文件)储存这种数据会非常的没有效 ...

  3. SQL数据库基础(二)

    数据类型: --类似于C#中的数据类型 Datetime   范围是:1753.1.1—— 9999.12.31 Smalldatetime      1900.1.1 ——2079.6.6 操作: ...

  4. asp.net webform 与mvc 共享session

    公司内部系统最早是用.net webform模式开发的,现新项目用.net mvc 开发,现存在的问题就是如何保持原有.net webform的登录状态不变,而在mvc中能够验证用户的登录状态,也就是 ...

  5. nodeJS中npm常见的命令

    常用的nodeJS中npm的命令:npm主要是node包管理和发布的工具.npm常用的命令:1:npm install <name> //(下载包) 下载后的包放在当前路径下面 npm i ...

  6. 导入myeclipse项目出现的问题及解决方案

    1.myeclipse 方法上加上@Override就报错 在有@Override方法上面会报错如下: The method oncreate(Bundle) of type HelloWorld m ...

  7. 获取经过跳转后的url地址

    粗略一算,不写code已经好几个月了. 昨日受兄弟所托,为他写了一个小小的程序. 程序功能: 自动获取跳转后的Url地址 如下图所示: (newUrl.txt为转换后的地址信息...) 实现过程: 每 ...

  8. 高性能JS笔记2——数据存取

    数据存取性能而言: 字面量>本地变量>数组元素>对象成员 一.标识符解析的性能 标识符解析是有代价的,一个标识符的位置越深,它的读写速度也就越慢. 局部变量的读写速度是最快的,全局变 ...

  9. Android SDK Manager无法下载的问题

    Android SDK Manager 你无法更新了. 现在这里有一个解决方案,如下. 1.启动 Android SDK Manager ,打开主界面,依次选择「Tools」.「Options...」 ...

  10. 第一节 SOA的基本概念和设计思想

    WCF一直很火,一直也没有时间来静下心来学习新的技术.不知不觉已经做程序八年了,其中的时间基本都费了,刚入门时很火热,后来慢慢热情被琐事取代.现在开始学习JAVA和WCF,学JAVA的原因就是想做手机 ...