本篇章涵蓋後面開發須要用到的工具,主要包含如下方面:javascript
java -version
顯示結果以下表示安裝成功。eclipse
官網下載地址,下載後是zip壓縮包,解壓雙擊運行eclipse.exe便可。主要列一下eclipse的一些使用技巧。html
Help->Install New Software
http://download.eclipse.org/jetty/updates/jetty-wtp/
,更改鏡像後地址應該是http://mirrors.ustc.edu.cn/eclipse/jetty/updates/jetty-wtp/
,即download.eclipse.org
->mirrors.ustc.edu.cn/eclipse
,爲啥是這樣?ustc(中國科技大學)的鏡像服務其實不單單提供eclispe鏡像,還有linux,android等鏡像,因此不能簡單隻替換域名,須要在mirrors.ustc.edu.cn
加上eclipse子文件夾來和其它鏡像區別。Window->Preferences
plug-ins activated on startup
中,勾選掉不須要插件,例如jboss系列,各類reporting,UI的去掉要慎重,可能有會影響使用,可本身根據須要嘗試,若是去掉有問題,再從新勾上便可。Window->Preferences
**/*.js
,指定js忽略編譯全部js文件maven
maven可本身安裝官網下載地址,其實下載好eclipse就自帶maven了,maven的好處太多了。不用本身下jar包,並且可能下源碼,配合eclipse,學習開發java太方便了。這裏主要說下maven的鏡像配置,
編輯settings.xml文件,若是沒有就安裝截圖路徑新建一個,
settings.xml內容以下java
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <localRepository/> <interactiveMode/> <usePluginRegistry/> <offline/> <pluginGroups/> <servers/> <mirrors> <mirror> <id>center</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> <proxies/> <profiles/> <activeProfiles/> </settings>
64-bit Windows zip
版本,下載解壓後,開始在eclipse中配置tomcatservers
視圖,能夠經過以下步驟添加no servers are available. Click this link to create a new server...
,而後步驟以下servers
視圖中有其它服務,則在servers
視圖窗口中,右鍵到如今,咱們開發環境就準備好了,固然2,3步中,eclisep和maven能夠不優化,若是你能忍受jar長時間下不下來,編譯速度慢。後續會以自動抓圖爲目標,開始JAVA學習。計劃是由淺入深,最終涉及到java基礎,http,spring mvc,多線程,數據庫等。linux