Intellij IDEA優化設置

一、IDEA 設置啓動JDK

在使用 idea16版本時,若是系統jdk不是 JDK8或更高,啓動時會彈出以下錯誤:輸入圖片說明java

Window 能夠添加IDEA_JDK環境變量(64位啓動程序)指定啓動使用的JDK:less

IDEA_JDK_64 = D:\Program Files\Java\jdk1.8.0_72

根據不一樣IDE能夠選擇的變量有:IDEA_JDK / PHPSTORM_JDK / WEBIDE_JDK / PYCHARM_JDK / RUBYMINE_JDK / CLION_JDK / DATAGRIP_JDKide

參考官方說明ui

二、最大文件size設置

IDEA打開的文件大小太大會提示報錯:this

File size exceeds configured limit (2560000). Code insight features not available.

IDEA對能關聯的文件大小作了限制,主要是爲了保護內存,默認值爲2500kb,對於通常的java文件也夠用了,只是用到protocbuf生成的java文件過大,達到3M多。 其設置在...IDEA安裝目錄\bin 下的idea.properties文件。idea

#---------------------------------------------------------------------
# Maximum file size (kilobytes) IDE should provide code assistance for.
# The larger file is the slower its editor works and higher overall system memory requirements are
# if code assistance is enabled. Remove this property or set to very large number if you need
# code assistance for any files available regardless their size.
#---------------------------------------------------------------------
idea.max.intellisense.filesize=2500

解決方法:根據本身須要調整此數值,單位KBcode

三、設置IDEA運行JVM內存

其設置在...IDEA安裝目錄\bin 下的idea.exe.vmoptions | idea64.exe.vmoptions,根據機器內存調整:圖片

-Xms128m
-Xmx3072m
-XX:MaxPermSize=512m
相關文章
相關標籤/搜索