一、配置Intellij Idea的配置文件從默認c盤轉移到其餘盤符
找到Intellij idea的安裝文件,在bin目錄下找到idea.properties配置文件,以下把Idea的配置文件夾和Idea的系統文件夾配置到除c盤外的其餘盤符。javascript
#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
idea.config.path=D:/java/IntellijIdea/.IntelliJIdea/config
#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE system folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
idea.system.path=D:/java/IntellijIdea/.IntelliJIdea/system
二、設置快捷鍵習慣風格爲eclipse的習慣:
「ctrl+alt+s」進入設置菜單,在搜索欄輸入「keymap」,而後如圖選擇「eclipse」這樣大多數快捷鍵就會跟eclipse工具裏的一致了。
三、設置「字體」:
進入設置菜單,以下圖選擇本身喜歡的字體,固然我仍是鍾愛「consolas」字體的:
四、設置本身的文件註釋模板:
進入設置,而後找到以下位置,而後就能夠根據本身的習慣去設置:css
/**
*Created with ${PRODUCT_NAME}
*Created By Kinsey
*Date: ${DATE}
*Time: ${TIME}
*/
五、設置你的IDEA的字符編碼
六、取消自帶的svn的設置,不少剛開從svn下載項目的時候會出問題,是由於此時他指定了本身默認的svn(所有取消均可以)
七、給項目設置對應的jdk編譯環境
八、把lib包進入到「buildpath」中
java
常常能用到的幾個快捷鍵
「psvm」:快速建立main方法sql
public static void main(String[] args) {
}
「sout」:快速建立print語句ruby
System.out.println();
「alt+enter」:快速補全
例子1(對於局部變量的自動補全):在對象a的位置「alt+enter」自動完成局部變量的補全建立工做
markdown
User a = new User() ;
例子2:完成類型的強制轉換,以下app
User user = jdbc.queryForObject(sql, new Object[]{id}, new UserMapper());
鼠標放在等號右邊而後「alt+enter」將結果轉換成「User」eclipse
User user = (User)jdbc.queryForObject(sql, new Object[]{id}, new UserMapper());
例子三、自動實現接口的方法:
假設有一個「Dao接口」裏面定義了許多方法,完成它的實現類的時候,光標在要實現的接口附近,而後「alt+enter」,如圖自動實現接口的方法。
ide
……等等。「alt+enter」仍是蠻強大的。
「shift+alt+r」:快速重命名
「alt+insert」:這個快捷鍵使用頻率也是很高的
①:自動建立知足本身需求的構造方法
②:快速實現setget方法
③:快速建立「toString()」
等等
svn
「ctrl+shift+r」:快速打開資源文件
「ctrl+l」:快速定位到文件中行的位置
「shift+ctrl+alt+s」:快速進入項目結構設置
「ctrl+alt+s」:快速進入設置菜單
「shift+alt+z」:快速建立ifelse或者快速完成try catch