IntelliJ IDEA 12建立Maven管理的Java Web項目(圖解)

來源:互聯網
上載者:User

本文主要使用圖解介紹了使用IntelliJIDEA 12建立Maven管理的Java Web項目的過程。

本文PDF文檔:http://download.csdn.net/detail/zht666/5141235

1、建立項目,選擇Maven Module,輸入項目名稱,點擊Next繼續。

注意這裡的Module就是項目的意思,等同於MyEclipse中的Project。

接著直接點擊Finish即可。

就是建立完畢後的Maven項目,雙擊pom.xml查看POM檔案內容,可以自行添加Maven的依賴。但是發現,沒有Web目錄,怎麼辦?看後面。

在項目名稱上右擊,選擇Add Framework Support...

在Add Framework Support對話方塊中勾選Web Application,版本選擇3.0並勾選Create web.xml。

點擊OK後,看到如下介面,項目中出現了web檔案件,是不是很熟悉了,和MyEclipse中的項目結構類似。

開啟pom.xml檔案,添加必須的Maven依賴。也叫Maven座標,由groupId、artifactId和version唯一確定一組jar依賴檔案。

我添加的pom.xml檔案內容如下:

<?xml version="1.0" encoding="UTF-8"?><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>SpringMvcDemo</groupId>    <artifactId>SpringMvcDemo</artifactId>    <version>1.0-SNAPSHOT</version>    <dependencies>        <dependency> <!-- junit 4.7 -->            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <version>4.11</version>            <type>jar</type>            <scope>test</scope>        </dependency>        <dependency> <!-- spring 3.2 -->            <groupId>org.springframework</groupId>            <artifactId>spring-context</artifactId>            <version>3.2.1.RELEASE</version>            <type>jar</type>        </dependency>        <dependency>            <groupId>log4j</groupId>            <artifactId>log4j</artifactId>            <version>1.2.17</version>            <type>jar</type>        </dependency>        <dependency> <!--Jackson核心包-->            <groupId>com.fasterxml.jackson.core</groupId>            <artifactId>jackson-core</artifactId>            <version>2.1.3</version>        </dependency>        <dependency> <!--Jackson資料繫結包-->            <groupId>com.fasterxml.jackson.core</groupId>            <artifactId>jackson-databind</artifactId>            <version>2.1.3</version>        </dependency>        <dependency> <!--Jackson註解包-->            <groupId>com.fasterxml.jackson.core</groupId>            <artifactId>jackson-annotations</artifactId>            <version>2.1.2</version>        </dependency>    </dependencies></project>

然後在index.jsp檔案中隨便加點內容。

下面配置Tomcat伺服器,本例使用Tomcat6。

如,選擇Local,然後點擊Configure,在彈出的對話方塊中選擇Tomcat安裝目錄。

選擇Tomcat Server,然後點擊綠色的“+”號。

點擊“+”後選擇Local,剛剛已經配置好了Local的Tomcat伺服器。

這裡會建立一個Tomcat服務,輸入任意名字即可。

點擊Deployment,然後點擊右邊的“+”,添加Artifact部署。

點擊OK回到主介面,,點擊Application Servers開啟伺服器視圖,點擊Tomcat6[local],就能看到項目的部署情況了。點擊介面上方的啟動按鈕就可以啟動Tomcat伺服器,啟動後伺服器自動開啟瀏覽器。

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.