MyEclipse配置和使用Maven
maven是管理項目的,myeclipse是編寫代碼的。第一次寫項目都要配置好多東西,很麻煩,now 來看看怎樣新建一個maven項目。
工具/原料
- myeclipse
- maven
方法/步驟
-
因為教程使用的maven是自己下載配置的,並沒有使用myeclipse自帶的(高版本的myeclipse自帶maven)。所以首先你要安裝了maven。maven的下載安裝可參考下面的經驗
-
打開myeclipse(本經驗中使用的是myeclipse2014),Window-->preferences。
-
找到myeclipse-->maven4myeclipse,如果你要下載源碼和幫助文檔就勾選上圖中那兩個框。
-
在maven4myeclipse下找到installations,把自己安裝的maven添加進來。如圖:
-
找到user settings。將user settings設置為maven項目下的cfon/settings.xml,確定。
-
新建一個web工程,勾選上add maven support,java version要在1.7及以上.
-
然後一路next,到項目結構那兒,選擇maven的項目結構。
-
如果幸運的話,新建的項目沒有錯。如果提示錯誤:
Failure to transfer org.apache.maven:maven-artifact:pom:2.0.6 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.apache.maven:maven-artifact:pom:2.0.6 from/to central (http://repo.maven.apache.org/maven2): No connector available to access repository central (http://repo.maven.apache.org/maven2) of type default using the available factories pom.xml /hello line 1 Maven Configuration Problem
-
那樣的話,打開Window-->preferences-->myeclipse-->maven4myeclipse--->user settings把local repository裏面的地址復制。
如果你的myeclipse沒有的話,就找到:
c:\users\{你的電腦賬號}\.m2\repository (一般在這個文件夾裏)。
比如我的:c:\users\long\.m2\repository
-
找打repository文件及後,在裏面搜索 maven*.lastupdated。把搜出來的文件都刪了。
-
重啟myeclipse,右鍵項目--->maven4myeclipse--->update project...
-
勾選Force Update of Snapshots/Releases,然後ok退出,如果還是錯誤,不要著急,先等一會。如果過了一會還是有錯,那就問度娘吧。如果解決了,記得投我一票哦。
MyEclipse配置和使用Maven