這裏主要是在eclipse中使用maven,所以只使用到了一部分命令,整理下來方便之後查閱。html
生成清除Eclipse項目結構: mvn eclipse:eclipse mvn eclipse:cleanjava
清理(刪除target目錄下編譯內容) mvn cleanreact
僅打包Web頁面文件 mvn war:explodedweb
編譯項目 mvn compileapache
打包發佈 mvn packagewindows
打包時跳過測試 mvn package -Dmaven.test.skip=ture緩存
還有不少命令目前尚未使用到,之後遇到再補充tomcat
本文地址:http://blog.csdn.net/kongxx/article/details/6993501服務器
Maven用了好久了,命令一直記不住,其實想一想就那個幾個經常使用的,今天寫下來,幫着記憶吧併發
java編寫的用於構建系統的自動化工具。
目前版本是2.0.9,注意maven2和maven1有很大區別,閱讀第三方文檔時須要區分版本。
見官方網站;
The 5 minute test,官方簡易入門文檔;
Getting Started Tutorial,官方入門文檔;
Build Cookbook,官方的cookbook;
POM Reference,POM文件的設置參考
Settings Reference ,settings文件的設置參考
Better Builds with Maven,免費的電子書,下載須要註冊。
Maven正在逐漸取代Ant,不少java開源軟件(Spring、Struts2 ……)已經使用maven。
經過我寫的商品管理的小例子,演示結合maven和svn的功能。
從官方網站下載最新的Maven分發包http://maven.apache.org/download.html,當前爲2.0.9;
mvn -version
Maven的基本使用介紹經過命令行編寫簡單的java和web項目。
經過maven在命令行下建立普通java項目,也就是main方法執行的項目或者jar文件的類庫。
執行:
mvn archetype:generate
在交互界面中:
觀察helloworld目錄(Define value for artifactId輸入的項目名稱)下生成的文件和目錄:
測試代碼: src\test\java\com\easymorse\AppTest.java
命令行進入helloworld目錄Define value for artifactId輸入的項目名稱)。
項目打包
mvn package
檢查命令生成了什麼?
運行打包的jar文件:
java -cp target\helloworld-1.0-SNAPSHOT.jar com.easymorse.App
編譯源程序
mvn compile
編譯並測試
mvn test
清空生成的文件
mvn clean
將maven項目轉化爲eclipse項目
命令行運行:
mvn eclipse:eclipse
打開eclipse,菜單選擇:file>import>general>existing projects into workspace,在對話框中選中目錄,導入便可。
若是要清除有關eclipse項目的配置信息:
mvn -Dwtpversion=1.0 eclipse:clean
聯合使用
mvn eclipse:clean clean
經過maven在命令行下建立java web項目。
在命令行輸入,這一步和建立java項目相似:
mvn archetype:generate
交互步驟說明:
須要在pom.xml文件中增長servlet容器的插件:
<build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.6</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build>
repository目錄的做用
repository的位置,在用戶目錄的.m2目錄下。
repository目錄的做用,對依賴類庫的緩存。
項目打包
mvn package
啓動tomcat
mvn tomcat:run
啓動jetty
mvn jetty:run
轉化爲eclipse項目
mvn -Dwtpversion=1.5 eclipse:eclipse
這樣生成wtp插件的web項目。
打開eclipse,菜單選擇:file>import>general>existing projects into workspace,在對話框中選中目錄,導入便可。
另外,須要在eclipse裏建立一個classpath變量,名稱爲:M2_REPO,值爲系統用戶下.m2/repository目錄。
Project Object Model,項目對象模型。
經過xml格式保存的pom.xml文件。
做用相似ant的build.xml文件,功能更強大。
該文件用於管理:源代碼、配置文件、開發者的信息和角色、問題追蹤系統、組織信息、項目受權、項目的url、項目的依賴關係等等。
一個完整的pom.xml文件,放置在項目的根目錄下。
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- The Basics --> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> <packaging>...</packaging> <dependencies>...</dependencies> <parent>...</parent> <dependencyManagement>...</dependencyManagement> <modules>...</modules> <properties>...</properties> <!-- Build Settings --> <build>...</build> <reporting>...</reporting> <!-- More Project Information --> <name>...</name> <description>...</description> <url>...</url> <inceptionYear>...</inceptionYear> <licenses>...</licenses> <organization>...</organization> <developers>...</developers> <contributors>...</contributors> <!-- Environment Settings --> <issueManagement>...</issueManagement> <ciManagement>...</ciManagement> <mailingLists>...</mailingLists> <scm>...</scm> <prerequisites>...</prerequisites> <repositories>...</repositories> <pluginRepositories>...</pluginRepositories> <distributionManagement>...</distributionManagement> <profiles>...</profiles> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.mojo</groupId> <artifactId>my-project</artifactId> <version>1.0</version> <packaging>war</packaging> </project>
依賴關係列表(dependency list)是POM的重要部分。
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.0</version> <scope>test</scope> </dependency> ... </dependencies>
如何查到依賴的類庫?
通常能夠經過這個網站:http://www.mvnrepository.com
好比查詢hibernate,能夠找到結果列表中的hibernate類庫條目。
點擊:http://www.mvnrepository.com/artifact/org.hibernate/hibernate,
選擇版本,好比3.2.6ga,即:http://www.mvnrepository.com/art ... /hibernate/3.2.6.ga
複製文章中的:
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> <version>3.2.6.ga</version> </dependency>
到pom.xml文件中便可。
是否還須要找到hibernate依賴的pom?
不須要,hibernate也會有pom,maven會經過它的pom自動找到它依賴的類庫。
繼承其餘pom.xml配置的內容。
maven提供了一個相似java.lang.Object的頂級父pom.xml文件。
能夠經過下面命令查看當前pom.xml受到超pom.xml文件的影響:
mvn help:effective-pom
建立一個各類項目可複用的pom.xml文件:http://easymorse.googlecode.com/svn/trunk/pom/pom.xml
部署要複用的pom.xml文件:
mvn install
在本身的pom文件中繼承上述pom:
<parent> <groupId>com.easymorse</groupId> <artifactId>pom</artifactId> <version>0.1</version> </parent>
用於將多個maven項目聚合爲一個大的項目。
好比目錄結構以下:
. |-- pom.xml |-- module-a `-- pom.xml |-- module-b `-- pom.xml |-- module-c `-- pom.xml |-- foo-all `-- pom.xml
那麼總的pom.xml文件相似:
... <modules> <module>module-a</module> <module>module-b</module> <module>module-c</module> <module>foo-all</module> </modules> </project>
參考文檔:http://maven.apache.org/plugins/maven-eclipse-plugin/reactor.html
原文示例有誤,見:modules.rar
maven的屬性,是值的佔位符,相似EL,相似ant的屬性,好比${X},可用於pom文件任何賦值的位置。
有如下分類:
project.x:pom文件中的屬性,好比:<project><version>1.0</version></project>,引用方式:${project.version}
settings.x:settings.xml文件中的屬性,好比:<settings><offline>false</offline></settings>,引用方式:${settings.offline}
自定義:在pom文件中可 以:<properties><installDir>c:/apps/cargo-installs< /installDir></properties>,引用方式:${installDir}
在.m2目錄下建立settings.xml文件(若是沒有的話)
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <offline>true</offline> </settings>
常常有第三方包,由於一些緣由,在網上repository上沒有,須要本身動手安裝。
好比sun某些版本的jar文件,好比oracle的驅動。
已oracle驅動程序爲例,好比驅動路徑爲c:/driver/ojdbc14.jar,是10.2.0.3.0版本
在該網址可以查到:http://www.mvnrepository.com/artifact/com.oracle/ojdbc14 artifactId和groupId。
mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.3.0 -Dpackaging=jar -Dfile=c:/driver/ojdbc14.jar
這樣就能夠在pom中依賴引用了:
<dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <version>10.2.0.3.0</version> </dependency>
tomcat配置有管理權限的用戶:conf\tomcat-users.xml
<?xml version='1.0' encoding='utf-8'?> <tomcat-users> <role rolename="manager"/> <user username="marshal" password="password" roles="manager"/> </tomcat-users>
在pom文件的tomcat插件中添加:
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId> <configuration> <url>http://localhost:8080/manager</url> <server>myserver</server> <path>/mycontext</path> </configuration> </plugin>
在.m2/settings.xml文件中增長:
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>myserver</id> <username>marshal</username> <password>password</password> </server> </servers> </settings>
運行打包部署,在maven項目目錄下:
mvn tomcat:deploy
而後訪問:http://localhost:8080/mycontext/ 便可。
撤銷部署:
mvn tomcat:undeploy
啓動web應用:
mvn tomcat:start
中止web應用:
mvn tomcat:stop
從新部署:
mvn tomcat:redeploy
部署展開的war文件:
mvn war:exploded tomcat:exploded
自定義插件的方法:http://maven.apache.org/plugins/maven-archetype-plugin/examples/archetype.html
自定義goal的執行:<preGoal><postGoal>