1. 找不到server選項
1)Help -> Install New Software?
2) Work with 輸入?kepler -?http://download.eclipse.org/releases/kepler?
3)點擊Add添加
4)勾選? Web, XML, Java EE and OSGi Enterprise Development ?
5) Next - > 同意協議 完成
2. 找不到SVN
????1) . Help -> Install New Software?
????2). SVN -?http://subclipse.tigris.org/update_1.8.x?
????這里要注意使用最新的SVN插件, 否則, 在添加SVN地址的時候會一直停留在 operation in progress頁面
????3). 同意協議完成
4. Mac 下 Eclipse 內置Tomcat 端口被占用
問題描述:?
mac下的Eclipse中內置的Tomcat,啟動時報一下錯誤:
Several ports (8080, 8009) required by Tomcat v8.0 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).
解決辦法:?
打開終端,輸入以下命令
1. $?lsof -i :8080
如果你被占用的端口不是8080,請修改命令中的參數。?
該命令輸出以下內容:
我的Mac上占用8080端口的進程ID是37387,所以我再將這個進程殺死
2. $ kill -9 37387
請根據你的進程ID來修改次命令的最后一個參數
然后再次啟動Eclipse中的Tomcat,可以正常啟動了!
windows版本解決辦法:?https://jingyan.baidu.com/article/48b558e30c7a977f38c09af0.html
5. mac 系統下 eclipse 無法啟動
應用程序 -> eclipse -> 顯示包內容 -> contents -> Eclipse ->?configuration -> 刪除org.eclipse.core.runtime文件
重啟應用就搞定了