1. 程式人生 > >Eclipse使用過程的一些配置、錯誤等的總結記錄

Eclipse使用過程的一些配置、錯誤等的總結記錄

rri 刪除行 compiler sta 公司 epo 本地 onf eclipse使用

背景:
公司項目使用jdk1.6、tomcat7、SVN,本文總結使用到現在的一些配置和問題。

1、Eclipse項目幾點配置:
(1)Windows -> Preferences -> Java/Installed JREs:
JRE home: C:\Program Files (x86)\Java\jdk1.6.0_33
JRE name:jdk1.6.0_33
(2)底部視圖加上Ant
Winodws -> Show View -> Other.. -> Ant -> OK -> 把項目build.xml拖到Ant上。

2、Eclipse中修改SVN用戶名和密碼

來源:http://www.cnblogs.com/exmyth/p/4446665.html
(1)查看你的Eclipse 中使用的是什麽SVN Interface
windows > preference > Team > SVN > SVN Interface
(2)如果是用的JavaHL, 找到以下目錄並刪除auth目錄下的文件.
Windows 7
C:\Users\"你的用戶名"\AppData\Roaming\Subversion\auth\
XP
C:\Documents and Settings\"你的用戶名"\Application Data(隱藏文件夾)\"Subversion\auth"
(3) 如果你用的SVNKit, 找到以下目錄並刪除.keyring文件.
[eclipse ]"configuration"org.eclipse .core.runtime

3、SVN忽略classes、release、bin
(1)打開repository browser(在資源管理器中輸入svn:\\,回車後輸入URL地址),刪除裏面classes、release的子目錄
(2)刪除本地電腦裏面classes、release的子目錄所有文件,右鍵點擊這些子目錄,team -> 添加至svn:ignore。
(3)Eclipse ->window->preferences->team->Ignored Resource->Add Pattern->

如忽略realse文件夾,就Add Pattern,填入*/realse/*
如忽略bin文件夾,就Add Pattern,填入*/bin/*
如忽略.class類型文件,填入*.class

4、eclipse調試時斷點頻繁停在threadpoolexecutor
解決:
Eclipse->Window->Preferences->Java->Debug,去掉"Suspend execution on uncaught exceptions"

5、eclipse導入項目以後,內容沒有錯誤,項目上卻有個小紅叉
解決:
Problems選項卡會有詳細的錯誤描述,如果被關閉了的話,重新打開方法:
Eclipse->Window->Show View->Other->Problems。

6、錯誤提示:The method of type must override asuperclass
解決:
Windows->Preferences->Java->Compiler,在右邊的Compiler compliance level 修改版本為 1.6
項目右鍵->build path->configure build path->java Compiler->Compiler compliance level 修改版本為 1.6

7、錯誤提示:Java compiler level does not match the version of the installed Java project facet
解決:
右鍵項目Properties->Properties->Project Facets->Project Facets->“Java”下拉列表中選擇相應版本

8、Eclipse幾個常用快捷鍵
查找內容:ctrl + h
查找文件:ctrl + shift + r
格式化代碼:ctrl + shift + F
添加“/”註釋:ctrl + /
添加“/**/”註釋:ctrl + shift + /
刪除行:ctrl + d
豎向選擇(開啟、關閉):alt + shift + a
重命名方法等:alt + shift + r

Eclipse使用過程的一些配置、錯誤等的總結記錄