LoginSignup
8
7

More than 5 years have passed since last update.

EclipseからIntelliJに乗り換えるときに行った設定

Last updated at Posted at 2016-04-18

※随時追加します。

import の設定

デフォルトの設定だと、すぐに*でimportをされてしまう。
Preferences -> Editor -> Code Style -> Java の importsタブにて設定。

Screen Shot 2016-04-18 at 4.22.27 PM.png

メモリの設定

デフォルトのメモリ量だと、プロジェクトの大きさによりメモリが足りなくなり、
コンパイルが通らなくなる。

~/Library/Preferences/IntelliJIdea15CE/idea.vmoptions
参考サイト : https://www.jetbrains.com/idea/help/tuning-intellij-idea.html

-Xms1024m
-Xmx8192m
-XX:MaxPermSize=1024m
-XX:ReservedCodeCacheSize=240m
-XX:+UseCompressedOops
8
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
7