eclipse環境搭建
阿新 • • 發佈:2021-01-03
eclipse-jee環境搭建
1 官網下載最新版本eclipse-jee
2 重新定義使用者
修改eclipse.ini檔案
-vmargs
-Duser.name=Antonio
3 下載svn外掛
選單Help => Eclipse markplace... 搜尋svn,選擇安裝Subclipse,安裝後的選單是中文的; 也可以選擇Subversive,不過安裝後選單是英文,使用不習慣。 由於自帶Git,所以沒有自己安裝過。
4 下載Spring boot 外掛
選單Help => Eclipse markplace...
搜尋spring,安裝Spring Tools,安裝過程需要重啟
5 設定全域性編碼與字型
設定編碼: 選單Window => Preferences => General => Workspace 在Text file encoding中選擇UTF-8 設定字型: 選單Window => Preferences => General => Appearance => Color and Fonts 選擇Basic展開,Font相關是字型,Color相關是顏色
6 自定義maven映象
準備好settings.xml檔案,可以設定阿里雲映象,如下:
<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>mirrorId</id>
<mirrorOf>repositoryId</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://my.repository.com/repo/path</url>
</mirror>
-->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
選單Window => Preferences => Maven => User Settings 選擇準備好的檔案
7 lombok
修改eclipse.ini檔案,在最後新增
-javaagent:lombok.jar