Maven的安裝配置詳解
下載maven
解壓路徑:
開啟環境變數:右鍵此電腦-屬性-高階系統設定-高階-環境變數
新增以下系統變數:
測試:win+r輸入cmd
輸入mvn -v,如果出現下面這些資訊,就說明maven安裝成功,環境變數設定成功。
修改本地倉庫路徑:
阿里雲倉庫的配置:
<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>
新建工作空間,在eclipse中進行基礎的設定:https://blog.csdn.net/qq_40323256/article/details/90141711
新建Maven工程:
(1)如果不勾選:Create a simple project,如下:
(2)如果勾選:Create a simple project,如下:
然後我們看到有報錯,如下:
此時只需要在src-main-webapp下面新建資料夾“WEB-INF”,並在此資料夾下新建web.xml檔案即可。或者直接在專案右鍵【javaEETools】-【generate deployment...】
web.xml:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1"> <display-name>HelloJavaWeb</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> </web-app>
我們現在看到jre system library的後面是[j2se-1.5],
現在我們把它變為[javase-1.8]:
window-show view-other...
等待編譯,大概2分鐘
在pom.xml介面中右鍵:maven-add plugin
但是還不夠,還要新增<configuration>標籤內容,如下:
即:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>utf-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </build>
更新一下專案即可,步驟:右鍵專案-maven-update project...,這時候可以看到不報錯了。
然後建立servlet:
引入servlet的包:
在pom.xml介面中,右鍵-maven-Add dependency
然後在pom.xml中可以看到新增的依賴,如下:
但是這還不夠,還要新增:<scope>provided</scope>,如下:
<dependencies> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-jsp-api</artifactId> <version>7.0.47</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-servlet-api</artifactId> <version>7.0.47</version> </dependency> </dependencies>
然後再:window-preferences:
專案右鍵-build path-Configure build path...
執行:runAs-maven build...,
注意:首次執行maven專案時,Goals中輸入:clean tomcat7:run
對於非首次執行的maven專案,Goals中最好用這個,出現的bug少:clean tomcat7:redeploy
如果專案有報錯,試試更新maven專案再執行:右鍵專案-【maven】-【update project...】
]
到此這篇關於Maven的安裝配置詳解的文章就介紹到這了,更多相關Maven 安裝配置內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!