eclipse整合maven3後,建立java項目詳細圖解

來源:互聯網
上載者:User

1、建立一個Java項目

    1)File--->New--->Other--->Maven--->Maven Projet

    2)選擇maven-archetype-quickstart

            

    3)輸入項目的資訊

 

            

    4)產生的Java項目包結構如下

 

                   

     5)修改pom.xml,指定編譯時間的JDK版本

 

<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/xsd/maven-4.0.0.xsd">  <modelVersion>4.0.0</modelVersion>  <groupId>cn.luxh.app</groupId>  <artifactId>my-app</artifactId>  <version>0.0.1-SNAPSHOT</version>  <packaging>jar</packaging>  <name>my-app</name>  <url>http://maven.apache.org</url>  <!-- 指定屬性 -->  <properties>      <junit.version>4.10</junit.version>    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>      <jdk.version>1.6</jdk.version>  </properties>  <build>      <plugins>          <!-- 指定JDK的編譯版本 -->          <plugin>              <groupId>org.apache.maven.plugins</groupId>              <artifactId>maven-compiler-plugin</artifactId>              <version>2.5.1</version>              <configuration>                  <source>${jdk.version}</source>                  <target>${jdk.version}</target>                  <showWarnings>true</showWarnings>              </configuration>          </plugin>      </plugins>  </build>  <dependencies>    <dependency>      <groupId>junit</groupId>      <artifactId>junit</artifactId>      <version>${junit.version}</version>      <scope>test</scope>    </dependency>  </dependencies></project>

 

 

  2、建立一個Web項目

    1)File--->New--->Other--->Maven--->Maven Projet

    2)選擇maven-archetype-webapp

            

 

    3)填寫項目資訊 

 

            

    4)生產的Web項目包結構

 

              

 

 

       4.1)把項目轉為 Dynamic Web Module,在項目上點擊右鍵,選擇屬性,然後選擇Project facets,然後點擊Convert to faceted form...

          勾選Dynamic Web Module,選擇3.0,表示支援servlet3.0

          勾選Java,選擇1.6或更高的jdk版本

      4.2)工具只產生了一個叫 src/main/resource的source folder,我們需要手工添加 src/main/java、src/test/java和src/test/resource 三個source folder,在項目上右鍵 New ---->Source Folder,輸入folder name即可。

 

                                          

      4.3)修改Source Folder的編譯路徑,進入Java Build Bath視窗,雙擊每個檔案夾下的Output folder,指定路徑。

        src/main/java和src/main/resource指定target/calsses,src/test/java和src/test/resource指定target/test-classes

        都選上選上Allow output folders for source folders.

                                   

      4.4)配置部署的程式Deployment Assembly,刪掉test的那兩項,test的程式發布的時候不需要,添加maven的依賴庫,發布的時候發行就緒到lib目錄中,添加/src/main/webapp為部署的根目錄

                                   

    5)配置tomcat7,發布運行項目

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.