1. 程式人生 > >Eclipse創極速快三源碼出售建maven項目(包括maven的安裝與插件安裝)

Eclipse創極速快三源碼出售建maven項目(包括maven的安裝與插件安裝)

sta dep 管理員 con tar study install com ole

一、在電腦上極速快三源碼出售論壇:haozbbs.com Q1446595067安裝maven

1、在網上下載maven的壓縮包,解壓後放在指定目錄,例如我的就是F:\Study\Eclipse\Maven\soft\apache-maven-3.3.9。

鏈接: http://pan.baidu.com/s/1jH5ymb0 密碼: 9sbn

2、配置環境變量

添加新變量MAVEN_HOME,變量值為maven解壓包所在目錄F:\Apache-maven-3.3.9。

變量path中添加%MAVEN_HOME%\bin。此處註意,若非win 10系統,變量值前須加分號。

3、修改maven本地庫地址。首先新建一個文件夾maven_repository,打開maven解壓包下conf文件夾,打開settings.xml文件,修改

中間的地址是maven_repository文件夾所在路徑。

4、管理員模式進入命令提示符窗口,輸入:mvn -v

若出現如下內容,則安裝配置成功。

二、在eclipse中安裝maven插件

1、eclipse中,點擊help,選擇install new software,點擊add...,彈出下圖:

輸入http://download.eclipse.org/releases/mars,最後的mars是eclipse的版本。點擊OK後等待片刻,會出現:

在type filter text輸入maven篩選,會出現可供下載的maven插件,選擇m2e-wtp - Maven Intergration for WTP,點擊next。

2、安裝後重啟eclipse。打開Windows -Preferences看到maven項,說明安裝成功。最後修改maven的xml配置文件地址為電腦上maven解壓包中的settings.xml文件,如圖:

其中global settings是全局配置,即本臺電腦的所有用戶都會使用這個配置;user settings是個人配置,僅當前用戶會使用這個配置。

maven插件安裝完成。

三、新建maven項目

1、New->File->Other->Maven->Maven Project,點擊next後在彈出窗口勾選Create a simple project。

如下圖添加信息,因為要建立一個maven 的web項目,所以Packaging選擇war,點擊finish。

生成相應的maven項目結構,如圖:

之前在eclipse Java中新建maven項目的時候,一直報錯:

Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6

就是無法從官網下載該jar包,不知什麽原因。最後解決的辦法是使用阿裏雲鏡像庫,直接從阿裏雲下載。在settings.xml文件中修改mirror標簽內容,如下:

<mirror>
  <id>alimaven</id>
  <name>aliyun maven</name>
  <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  <mirrorOf>central</mirrorOf>        
</mirror>

右鍵點擊項目選擇Maven->update project,報錯消失。若未報錯此內容,可忽略。

2、新建完一個maven項目後,可能pom.xml還缺少一些東西而報錯,此時將報錯內容百度一下可以找到很多解決的資料。

我用到過的標簽內容:

</project>
<build>
<dependencies> //依賴包
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId><version>2.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>

          </dependency>

       </dependencies> 

       <plugins> //插件
     <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-war-plugin</artifactId>
               <version>2.6</version>
               <configuration>
                   <failOnMissingWebXml>false</failOnMissingWebXml>
               </configuration>
           </plugin>
           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-compiler-plugin</artifactId>
               <version>2.3.2</version>
               <configuration>
                   <source>1.7</source>
                   <target>1.7</target>
               </configuration>

           </plugin>

           <plugin>

            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat7-maven-plugin</artifactId>
            <version>2.1</version>
            <configuration>
                <port>9090</port>
                <path>/springbootJsp</path>
                <uriEncoding>UTF-8</uriEncoding>
                <finalName>springbootJsp</finalName>
                <server>tomcat7</server>
            </configuration>
        </plugin>
       </plugins>

</build>

</project>

3、項目不報錯後,就可以進行下一步。右鍵點擊項目,Properties->Project Facets,取消勾選Dynamic Web Services,只留下Java,選擇對應的jdk版本,我的是1.7。

點擊OK。

4、重新進入Properties->Project Facets,勾選Dynamic Web Services,可以看到左下角Further configuration available,點進去。

修改Content directory為:src/main/webapp,選上Generate web.xml deployment descriptor。

可以看到webapp項目結構如下:

四、部署tomcat

確認電腦上已有tomcat,且配置好了環境變量。

1、進入tomcat下的/conf/tomcat_users.xml,修改如下:

    <role rolename="manager"/>

<role rolename="manager-gui"/>
<role rolename="admin"/>
<role rolename="admin-gui"/>
<role rolename="manager-script"/>

<user username="admin" password="fy"roles="admin-gui,admin,manager- gui,manager,manager-script"/>

2、進入maven下的/conf/settings.xml,修改如下:

</server>
<id>tomcat7</id>
<username>admin</username>
<password>fy</password>

<server>

3、修改pom.xml

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>

</dependencies>

<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<port>9090</port>
<path>/mavensample</path>
<uriEncoding>UTF-8</uriEncoding>
<finalName>mavensample</finalName>
<server>tomcat7</server>
</configuration>
</plugin>

4、進入Windows->Properties->Server->Runtime Environment,點擊Add。

選擇電腦上有的tomcat版本,我的是7.0。

然後Browse選擇電腦上tomcat所在路徑。點擊Finish完成。

5、右鍵點擊項目Build Path->Configure Build Path->Java Build Path,點擊Add Library添加庫

選擇Server Runtime,Next

選中Apache Tomcat v7.0,Finish

6、在項目src\main\webapp下建立一個index.jsp文件,右鍵點擊webapp->new->JSP File,如圖:

編輯index.jsp,添加一行Hello World,如圖:

Eclipse創極速快三源碼出售建maven項目(包括maven的安裝與插件安裝)