idea 快捷鍵,常用設定,外掛安裝,檢視位元組碼

gary-liu發表於2017-01-14

快捷鍵

  • command+o 快速開啟類
  • shift+command+o 開啟任意檔案
  • ⌃Space control+空格 程式碼快速補全
  • ⌥F7 find all places where a particular class, method or variable is used in the whole project
  • alt+enter 匯入類
  • alt+command+b 進入方法具體實現
  • Ctrl+H 類的層級結構
  • command+7 顯示類結構
  • control +alt+O 程式碼格式化
  • Ctrl + Alt + Shift + T 重構
  • command + alt + L 格式化
  • 雙擊 shift 全文搜尋

參考:IntelliJ IDEA 使用教程(極客學院)http://wiki.jikexueyuan.com/project/intellij-idea-tutorial/emmet-introduce.html

安裝外掛ACTIVATE-POWER-MODE

從ACTIVATE-POWER-MODE認識IntelliJ IDEA的外掛開發 : http://www.shaowenwu.cn/cong-activate-power-moderen-shi-intellij-ideade-cha-jian-kai-fa/

輸入爆炸效果外掛:activate-power-mode
去掉震動效果,GitHub專案地址:https://github.com/ViceFantasyPlace/activate-power-mode 這裡下載該外掛的原始碼,然後刪除所有和shake有關的程式碼,就可以去掉震動效果,不過使用中感覺idea變得有點卡頓。參考:http://www.shaowenwu.cn/cong-activate-power-moderen-shi-intellij-ideade-cha-jian-kai-fa/

debug及執行外掛:

To create a Run/Debug configuration for a plugin
On the main menu, choose Run | Edit Configurations.
In the Run/Debug Configuration dialog, click ➕

* , or press ⇧⌫, and select Plugin.
* Specify the settings as necessary and click OK.
To run or debug a plugin

Depending on whether you are going to run or debug your plugin:
* To run the plugin, select Run | Run from the main menu, or press ⌃R.
* To debug the plugin, select Run | Debug from the main menu, or press ⌃D.
As a result, IntelliJ IDEA will start an instance of itself. This will be the instance in which your plugin will be available.

打包外掛方法,打成個jar,然後從本安裝外掛的方法安裝這個外掛就可以了。
To create a plugin archive
* Right-click the plugin module in the Project view and select Prepare Plugin Module For Deployment in the context menu.As a result, IntelliJ IDEA will create the necessary archive.


AceJump外掛

安裝外掛方法就不說了,mac上是 control+; 然後按下要定位的字元,然後會出現很多字元,輸入字元定位到想要定位的位置

FindBugs-IDEA 外掛

選擇專案右擊,選擇 find bugs 選單即可

idea檢視檔案位元組碼配置

command+ 開啟偏好設定 Tools->External Tools 點選加號新增,隨便寫 Name 和 Description內容
在Tools settings中填寫如下內容:

program:/Library/Java/JavaVirtualMachines/jdk1.8.0_73.jdk/Contents/Home/bin/javap
Parameters:-c $FileClass$
Working directory: $OutputPath$

然後再右擊java檔案時,選擇External Tools 中的顯示位元組碼選項,就會將位元組碼顯示到控制檯上
參考:Intellij idea快速檢視Java類位元組碼 - AClewis:http://www.itdadao.com/articles/c15a1016491p0.html

常用設定

程式碼提示忽略大小寫

preferences->code completion   :  Case sensitive completion  選擇 None

顯示記憶體使用情況

preferences-》Appearance   Window Options  勾選 Show memory indicator  

右下角會顯示記憶體使用情況,點選後可以進行部分記憶體的回收。

idea遠端除錯tomcat

參見:https://github.com/judasn/IntelliJ-IDEA-Tutorial/blob/newMaster/remote-debugging.md

極力推薦idea使用教程推薦:https://github.com/judasn/IntelliJ-IDEA-Tutorial

【參考文獻】
jetbrains官方手冊

相關文章