下載地址http://maven.apache.org/download.cgi。Windows用戶下載zip包。筆者使用的Maven下載連接: http://pan.baidu.com/s/1qYBFZcw 密碼: gmerjava
下載後的zip包以下web
將zip包解壓。在F盤新建一個Maven目錄(新建目錄的位置自定義)用來放置解壓後的文件夾,而後將apache-maven-3.2.3文件夾複製到F:\Maven下apache
配置Gradle環境變量,在系統環境變量中新建環境變量MAVEN_HOME,變量值爲F:\Maven\apache-maven-3.2.3(Maven的根目錄)api
而後點擊肯定,在系統環境變量Path中追加%MAVEN_HOME%\bin;指向Maven的bin目錄瀏覽器
CMD運行mvn -version,如出現如下截圖中的內容說明安裝成功tomcat
打開Eclipse,選擇Window -> Preferences,而後展開Maven選擇Installations,點擊Addapp
點擊Directory,在彈出的對話框中選擇Maven的安裝目錄,而後點擊Finishwebapp
而後勾選新添加的maven選項,點擊OKjsp
修改Maven配文件,這裏使用安裝的Maven配置文件。選擇User Settings,點擊Browsermaven
選擇Maven安裝目錄下conf目錄下的settings.xml文件,而後點擊Update Settings,點擊OK
在Eclipse中新建Maven Project。選擇New -> Maven Project,而後點擊Next
Group Id輸入com.test,Artifact Id輸入maven。Packaging選擇war,而後點擊Finish
此時新建的Maven Project已是Web項目無需轉換了。上圖顯示紅色的x,由於這是一個web項目缺乏web.xml配置文件。咱們從其它地方複製META-INF和WEB-INF兩目錄過來,也能夠從web項目中複製。結構以下
打開pom.xml配置文件。咱們須要配置Kotlin插件和Kotlin標準庫。配置以下
<properties> <kotlin.version>1.1.2</kotlin.version> </properties> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> <build> <!-- 只編譯Kotlin時配置 --> <!-- <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> --> <plugins> <!-- Kotlin編譯插件必須配置在Maven編譯插件以前 --> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <goals> <goal>compile</goal> </goals> <!-- Kotlin與Java代碼混編時指定資源目錄 --> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> <sourceDir>${project.basedir}/src/main/java</sourceDir> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> <sourceDir>${project.basedir}/src/test/java</sourceDir> </sourceDirs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> <executions> <!-- 替換會被 maven 特別處理的 default-compile --> <execution> <id>default-compile</id> <phase>none</phase> </execution> <!-- 替換會被 maven 特別處理的 default-testCompile --> <execution> <id>default-testCompile</id> <phase>none</phase> </execution> <execution> <id>java-compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>java-test-compile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
添加JavaEE類庫
<dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency>
添加war包插件
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.6</version> <configuration> <warName>maven</warName> </configuration> </plugin>
爲了運行web程序還須要tomcat插件
<plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <port>8080</port> <server>tomcat7</server> <path>/maven</path> <!-- 應用的部署context path --> </configuration> </plugin>
保存後會自動下載jar包依賴
選擇項目右擊,選擇Maven -> Update Project,點擊OK
而後在webapp下新建一個index.jsp,在index.jsp中輸入index
新建一個sourse目錄爲src/main/kotlin用來存放Kotlin源代碼。點擊Finish
選擇Kotin視圖可快速新建Kotlin Class
選中src/main/kotlin,選擇New -> Kotlin Class,新建一個HelloWorld.kt文件
在HelloWorld.kt中編寫以下代碼
package com.test.servlet import javax.servlet.http.HttpServlet import javax.servlet.http.HttpServletRequest import javax.servlet.http.HttpServletResponse import javax.servlet.annotation.WebServlet @WebServlet("/helloworld") class HelloWorld : HttpServlet(){ override fun doGet(req: HttpServletRequest, resp: HttpServletResponse) { println("enter the doGet method"); resp.writer.write("Hello, World") } }
在JavaEE視圖中右擊項目選擇Run as -> Run Configurations -> Maven Build,若是是第一次運行會彈出以下對話框
在Goals一欄輸入tomcat7:run,而後點擊Run,運行內嵌的tomcat
控制檯最後輸出以下截圖內容則說明啓動成功
在瀏覽器地址欄輸入http://localhost:8080/maven
輸入Servlet的訪問路徑http://localhost:8080/maven/helloworld