JAVA中MAVEN的使用

MAVEN能夠方便的進行JAVA項目的管理,建立,包括部署到tomcat,都很便捷html

1、MAVEN環境以及maven eclipse插件安裝java

安裝方法參照:apache

http://blog.csdn.net/maosijunzi/article/details/21160965tomcat

在這裏須要說明的一點是,咱們在運行maven的時候,會發現每次都要從新下載一遍依賴庫,緣由就是咱們的maven沒本地化,以下是本地化方法:eclipse

一、修改maven的settings.xml【個人在D:\maven\apache-maven-3.3.3\conf目錄】maven

<localRepository>D:/maven/apache-maven-3.3.3/repository/</localRepository>單元測試

二、修改eclipse的maven的插件爲本地測試

window->preferences->Maven選擇Installations網站

添加一個外部【external】的maven,Installation home選擇咱們安裝maven的位置,個人是【D:\maven\apache-maven-3.3.3】ui

window->preferences->Maven選擇User Settings

將User Settings【是User而不是Global Settings,否則改了咱們在java build path看到的M2_REPO仍是默認地址】 選擇爲D:\maven\apache-maven-3.3.3\conf\settings.xml能夠看到下面的Local Repository爲咱們上面設置的。

三、打開命令行,輸入mvn help:system

 mvn dependency:sources

以下是經常使用的Maven命令:
mvn archetype:create :建立 Maven 項目
mvn compile :編譯源代碼
mvn test-compile :編譯測試代碼
mvn test : 運行應用程序中的單元測試
mvn site : 生成項目相關信息的網站
mvn clean :清除目標目錄中的生成結果
mvn package : 依據項目生成 jar 文件
mvn install :在本地 Repository 中安裝 jar
mvn eclipse:eclipse :生成 Eclipse 項目文件
mvn -Dmaven.test.skip=true : 忽略測試文檔編譯

==============================

mvn eclipse:clean
mvn eclipse:eclipse
mvn help:system


四、部署到tomcat

在部署以前,必須先啓動tomcat7服務,C:\Program Files\apache-tomcat-7.0.39\bin\startup.bat

找到要部署的工程文件根目錄下,執行以下maven命令

> mvn clean:install             //clean是清理輸出文件,install編譯打包,在每次打包以前必須執行clean,才能保證發佈爲最新文件

> mvn tomcat7:redeploy    //第一次發佈 tomcat7:deploy,再次發佈 tomcat7:redeploy




<dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.4.3</version>
</dependency>



<repositories>
        <repository>
            <id>people.apache.snapshots</id>
            <url>
                http://repository.apache.org/content/groups/snapshots-group/
            </url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>apache.snapshots</id>
            <name>Apache Snapshots</name>
            <url>
                http://repository.apache.org/content/groups/snapshots-group/
            </url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>



將以下的加入到build裏面,用於支持tomcat6,tomcat7部署:

<build>         <plugins>             <plugin>                 <groupId>org.apache.tomcat.maven</groupId>                 <artifactId>tomcat6-maven-plugin</artifactId>                 <version>2.2</version>                   <configuration>                   <url>http://localhost:8080/manager/html</url>                   <server>tomcat</server>                 </configuration>             </plugin>             <plugin>                 <groupId>org.apache.tomcat.maven</groupId>                 <artifactId>tomcat7-maven-plugin</artifactId>                 <version>2.2</version>                 <configuration>                     <url>http://localhost:8080/manager/text</url>                       <server>tomcat7</server>                     <username>admin</username>                     <password>123456</password>                   </configuration>             </plugin>         </plugins>     </build>

相關文章
相關標籤/搜索