使用maven包管理器開發java web時,因爲國內網速太慢,或者牆的緣故,建立project後,老是要等待很長時間加載所需jar包。這對於開發者而言,是一種痛苦的等待,對於企業,也是一種損失。java
今天得遇高人指點,對eclipse中的maven插件作了優化配置,下面一步一步的操做示範,幫助有須要的朋友們:linux
linux/windows:打開eclipse後,window-》preferences-》mavenweb
mac:eclipse偏好設置-》mavenspring
而後選擇 User Settings,以下圖:apache
根據圖中3的指示的位置,建立一個配置文件settings.xml。vim
linux/mac都可使用下面命令建立,先不寫任何內容,而後保存,vim命令模式下是:wq,注:w是寫入,q是退出,冒號是命令開始windows
~$ vim /home/joyven/.m2/settings.xml
windows須要在當前用戶目錄下,依管理員身份建立。spring-mvc
接着回到eclipse的操做步驟,先關閉preferences面板,再次根據前面說步驟的,打開此面板,你會看到User Settings中發生的變化,以下圖:mvc
是的,你沒看錯,多出來了一個openfile。點擊openfile,而後Apply,再OK,最後關閉此面板。此時,已經在eclipse編輯窗口打開了前面建立的settings.xml文件。
配置開始了,將下面的代碼複製到settings.xml文件中,保存便可。
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <mirrors> <!-- mirror | Specifies a repository mirror site to use instead of a given repository. The repository that | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used | for inheritance and direct lookup purposes, and must be unique across the set of mirrors. | --> <mirror> <id>nexus-osc</id> <mirrorOf>central</mirrorOf> <name>Nexus osc</name> <url>http://maven.oschina.net/content/groups/public/</url> </mirror> <mirror> <id>nexus-osc-thirdparty</id> <mirrorOf>thirdparty</mirrorOf> <name>Nexus osc thirdparty</name> <url>http://maven.oschina.net/content/repositories/thirdparty/</url> </mirror> </mirrors> <profiles> <profile> <id>default</id> <repositories> <repository> <id>nexus</id> <name>local private nexus</name> <url>http://maven.oschina.net/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>nexus</id> <name>local private nexus</name> <url>http://maven.oschina.net/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles> </settings>
測試一下:在eclipse中建立一個maven工程,而後在eclipse的console窗口中,選擇maven console。就能夠看到加載的包的來源了。
右下角的倒三角箭頭鼠標懸浮上去後,有不少console列表,選擇maven console即,點擊便可切換到maven窗口,可看到有關下載源的信息,以下圖:
-------------------------------------------補充更新------------------------------------------------------------------------------
settings.xml文件中,在標籤<profile>必須包含在<profiles>中,不然在使用命令行執行mvn時,會出現一些錯誤:
Error reading settings.xml: Unrecognised tag: 'profile' (position: START_TAG seen ...</mirrors>\n\n\t<profile>... @22:11)
Line: 22
Column: 11
joyven@joyven-ThinkPad-E450:/mnt/workspace/spring-mvc$ mvn archetype:generate DgroupId=joyven -DartifactId=spring-mvc -DarchetypeArtifactId=maven-archetype-webapp
修改以後則沒有了。
補充一點:
用maven建立項目:
mvn archetype:generate DgroupId=joyven -DartifactId=spring-mvc -DarchetypeArtifactId=maven-archetype-webapp
說明:maven主要依靠座標來區分項目包。
groupId
artifactId
archetypeArtifactId
version
這四個值體現了maven包的惟一性。