當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Eclipse / Spring Tool Suite 配置
生活随笔
收集整理的這篇文章主要介紹了
Eclipse / Spring Tool Suite 配置
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
001. 安裝 project lombok.jar
download_url: https://projectlombok.org/download.html
002. eclipse.ini / sts.ini
增加或者修改
-vm D:/Program?Files/Java/jre7/bin -vmargs -Dosgi.requiredJavaVersion=1.6 -DtolerateIllegalAmbiguousVarargsInvocation=true -Xmx1024M -Xms1024M -Xmn384M -XX:PermSize=256M -XX:MaxPermSize=1024M -javaagent:lombok.jar -Xbootclasspath/a:lombok.jar?
003. 插件-svn
Eclipse update site URL: http://subclipse.tigris.org/update_1.10.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
Archived releases: http://subclipse.tigris.org/archive?
site-1.10.10.zip
004. 插件-反編譯01 (反編譯插件二選一即可, 個人推薦01)
JadClipse for Eclipse 4.0 4.0.0 ?http://feeling.sourceforge.net/update(失效)
org.sf.feeling.decompiler_1.0.2.zip ?單獨下載zip安裝
設置沒有源碼的class文件使用反編譯查看
Window --> Preferences --> General --> Editos --> File Associations --> *.class without source 默認使用類反編譯器查看
Window --> Preferences --> Java 類反編譯器 --> 默認使用 JD-Core
005.插件-反編譯02
net.sf.jadclipse_3.3.0.jar https://sourceforge.net/projects/jadclipse/
jad.exe ? ? ? ? ? ? ? ? ? ?http://varaneckas.com/jad/
放到IDE plugins目錄下
啟動Eclipse/STS后需要指定jad.exe路徑和反編譯文件緩存路徑
006. 修改Eclipse/STS General 主題(看喜好設置) 等
Window --> Preferences --> General --> Appearance --> theme選擇Classic 或者Windows Classic
Window --> Preferences --> General --> Appearance --> Colors and Fonts --> Basic --> 設置字體為 Courier New / Consolas?
Window --> Preferences --> General --> 勾選 Show heap status 顯示eclipse/sts內存使用情況
Window --> Preferences --> General --> Search 去掉勾選 Reuse editos to show matches
Window --> Preferences --> General --> Startup and Shutdown
去掉勾選 Refresh workspace on startup 和 Confirm exit when Closing last window?
去掉勾選不需要的啟動插件()
007. 編碼設置
Window --> Preferences --> General --> Workspace --> Text File encoding 設置為 UTF-8
Window --> Preferences --> General --> Content Types --> 修改Text項的Default encoding 為 UTF-8,然后點擊后面的update
注意里面還有java properties files 和JSP需要單獨設置下(他們默認的是ISO-8859-1)
008. Editors
Window --> Preferences --> General --> Editos?
| 勾選 insert spaces for tabs
| 勾選 Show line numbers
| 修改 Selection foreground color ? ? ? (×)
| 修改 Background color (85, 165, 225) ?(×)
Window --> Preferences --> General --> Editos --> Text Editors --> Spelling --> 去掉勾選 Enable spell checking
009. 插件更新
Window --> Preferences --> Install/Update --> Automatic Updates --> 去掉勾選 Automatically find new updates and notify me
010. Java 相關設置 Window --> Preferences --> Java
|--> 類反編譯器 --> 默認使用JD-Core
|--> Code Style --> Clean up --> --> codestyle --> 勾選 Use blocks in if/while/for/do statements 代碼塊加花括號
|--> Code Style --> Formatter --> Indentation --> 使用 Spaces Only , Size 設置為4; Line Wrapping 換行 設置多少字符換行
|--> Code Style --> Code Templates --> Types 和Methods 設置如下
/**
* @author ${user}
* @date ${currentDate:date('yyyy-MM-dd')}
* ${tags}
*/
|--> Compiler 設置編譯版本(1.8, 1.7 等等, 看自己JDK設置)
|--> Editor --> Content Assist --> 設置Auto Activation triggers for Java : 把.和26個字母全部輸入后, 可以在寫java代碼時候輸入什么字符都會自動提示
|--> Editor --> Save Actions 可以勾選保存的時候進行格式化處理等
|--> Install JREs 指定JRE路徑, 可以指定VM參數, 類似eclips.ini的設置
011. Maven設置 Window --> Preferences --> Maven
|--> Installations 指定MAVEN_HOME
|--> User Setting 指定個人maven的.setting.xml文件
setting.xml 中建議加上 如下內容(profiles標簽下), 可以在eclipse/sts新建maven項目時匹配對應的jdk版本,避免默認使用J2SE-5,出錯
<profile> ? ??
<id>jdk-1.8</id> ? ? ??
<activation> ? ? ??
<activeByDefault>true</activeByDefault> ? ? ??
<jdk>1.8</jdk> ? ? ??
</activation> ? ? ??
<properties> ? ? ??
<maven.compiler.source>1.8</maven.compiler.source> ? ? ??
<maven.compiler.target>1.8</maven.compiler.target> ? ? ??
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> ? ? ??
?</properties> ? ? ??
</profile>
014. Window --> Preferences --> Web
|--> CSS Files --> Editor --> 設置line with; Indent using spaces, size 設置為4,和java保持一致
|--> HTML Files --> Editor --> 設置line with; Indent using spaces, size 設置為4,和java保持一致
|--> JSP Files --> encoding 設置為UTF-8
015. Window --> Preferences --> XML
|-->XML Files --> Editor --> 設置line with; Indent using spaces, size 設置為4,和java保持一致
016. 設置tomcat內存配置
-Xmx768M -Xss512k -XX:MaxPermSize=512M
017.ExtJs編輯插件
spket
ext-5.1.0.jsb2 for ExtJs-5.1.0
018. 安裝主題插件
help --> Eclipse Marketplace --> 搜索 Eclipse Color Theme 然后安裝,重啟Eclipse
download_url: https://projectlombok.org/download.html
002. eclipse.ini / sts.ini
增加或者修改
-vm D:/Program?Files/Java/jre7/bin -vmargs -Dosgi.requiredJavaVersion=1.6 -DtolerateIllegalAmbiguousVarargsInvocation=true -Xmx1024M -Xms1024M -Xmn384M -XX:PermSize=256M -XX:MaxPermSize=1024M -javaagent:lombok.jar -Xbootclasspath/a:lombok.jar?
003. 插件-svn
Eclipse update site URL: http://subclipse.tigris.org/update_1.10.x
Zipped downloads: http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
Archived releases: http://subclipse.tigris.org/archive?
site-1.10.10.zip
004. 插件-反編譯01 (反編譯插件二選一即可, 個人推薦01)
JadClipse for Eclipse 4.0 4.0.0 ?http://feeling.sourceforge.net/update(失效)
org.sf.feeling.decompiler_1.0.2.zip ?單獨下載zip安裝
設置沒有源碼的class文件使用反編譯查看
Window --> Preferences --> General --> Editos --> File Associations --> *.class without source 默認使用類反編譯器查看
Window --> Preferences --> Java 類反編譯器 --> 默認使用 JD-Core
005.插件-反編譯02
net.sf.jadclipse_3.3.0.jar https://sourceforge.net/projects/jadclipse/
jad.exe ? ? ? ? ? ? ? ? ? ?http://varaneckas.com/jad/
放到IDE plugins目錄下
啟動Eclipse/STS后需要指定jad.exe路徑和反編譯文件緩存路徑
006. 修改Eclipse/STS General 主題(看喜好設置) 等
Window --> Preferences --> General --> Appearance --> theme選擇Classic 或者Windows Classic
Window --> Preferences --> General --> Appearance --> Colors and Fonts --> Basic --> 設置字體為 Courier New / Consolas?
Window --> Preferences --> General --> 勾選 Show heap status 顯示eclipse/sts內存使用情況
Window --> Preferences --> General --> Search 去掉勾選 Reuse editos to show matches
Window --> Preferences --> General --> Startup and Shutdown
去掉勾選 Refresh workspace on startup 和 Confirm exit when Closing last window?
去掉勾選不需要的啟動插件()
007. 編碼設置
Window --> Preferences --> General --> Workspace --> Text File encoding 設置為 UTF-8
Window --> Preferences --> General --> Content Types --> 修改Text項的Default encoding 為 UTF-8,然后點擊后面的update
注意里面還有java properties files 和JSP需要單獨設置下(他們默認的是ISO-8859-1)
008. Editors
Window --> Preferences --> General --> Editos?
| 勾選 insert spaces for tabs
| 勾選 Show line numbers
| 修改 Selection foreground color ? ? ? (×)
| 修改 Background color (85, 165, 225) ?(×)
Window --> Preferences --> General --> Editos --> Text Editors --> Spelling --> 去掉勾選 Enable spell checking
009. 插件更新
Window --> Preferences --> Install/Update --> Automatic Updates --> 去掉勾選 Automatically find new updates and notify me
010. Java 相關設置 Window --> Preferences --> Java
|--> 類反編譯器 --> 默認使用JD-Core
|--> Code Style --> Clean up --> --> codestyle --> 勾選 Use blocks in if/while/for/do statements 代碼塊加花括號
|--> Code Style --> Formatter --> Indentation --> 使用 Spaces Only , Size 設置為4; Line Wrapping 換行 設置多少字符換行
|--> Code Style --> Code Templates --> Types 和Methods 設置如下
/**
* @author ${user}
* @date ${currentDate:date('yyyy-MM-dd')}
* ${tags}
*/
|--> Compiler 設置編譯版本(1.8, 1.7 等等, 看自己JDK設置)
|--> Editor --> Content Assist --> 設置Auto Activation triggers for Java : 把.和26個字母全部輸入后, 可以在寫java代碼時候輸入什么字符都會自動提示
|--> Editor --> Save Actions 可以勾選保存的時候進行格式化處理等
|--> Install JREs 指定JRE路徑, 可以指定VM參數, 類似eclips.ini的設置
011. Maven設置 Window --> Preferences --> Maven
|--> Installations 指定MAVEN_HOME
|--> User Setting 指定個人maven的.setting.xml文件
setting.xml 中建議加上 如下內容(profiles標簽下), 可以在eclipse/sts新建maven項目時匹配對應的jdk版本,避免默認使用J2SE-5,出錯
<profile> ? ??
<id>jdk-1.8</id> ? ? ??
<activation> ? ? ??
<activeByDefault>true</activeByDefault> ? ? ??
<jdk>1.8</jdk> ? ? ??
</activation> ? ? ??
<properties> ? ? ??
<maven.compiler.source>1.8</maven.compiler.source> ? ? ??
<maven.compiler.target>1.8</maven.compiler.target> ? ? ??
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> ? ? ??
?</properties> ? ? ??
</profile>
012. Server?配置?
? ? Window --> Preferences --> Server --> Runtime Environments --> 添加自己的Server配置
013. Validation校驗
? ? Window --> Preferences --> Validation --> 去掉所有的校驗
014. Window --> Preferences --> Web
|--> CSS Files --> Editor --> 設置line with; Indent using spaces, size 設置為4,和java保持一致
|--> HTML Files --> Editor --> 設置line with; Indent using spaces, size 設置為4,和java保持一致
|--> JSP Files --> encoding 設置為UTF-8
015. Window --> Preferences --> XML
|-->XML Files --> Editor --> 設置line with; Indent using spaces, size 設置為4,和java保持一致
016. 設置tomcat內存配置
-Xmx768M -Xss512k -XX:MaxPermSize=512M
017.ExtJs編輯插件
spket
ext-5.1.0.jsb2 for ExtJs-5.1.0
018. 安裝主題插件
help --> Eclipse Marketplace --> 搜索 Eclipse Color Theme 然后安裝,重啟Eclipse
在Window --> Preferences --> General --> Appearance --> Color Theme 選擇自己喜歡的編輯器主題
總結
以上是生活随笔為你收集整理的Eclipse / Spring Tool Suite 配置的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 现金支票打印模板excel_施工表格填写
- 下一篇: Unity如何调用安卓手机摄像头实现拍照