本文主要使用圖解介紹了使用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伺服器,啟動後伺服器自動開啟瀏覽器。