eclipse入れたら入れるもの

プラグイン

最近入れない

設定

  • General/Workspace
    • Refresh automaticallyのチェックを入れる
    • Text file encoding を UTF-8
  • Java/Editor/Save Actions
    • 「Perform the selected actions on save」と「orgnize imports」をチェック
      • 保存時にimportを整理してくれる。コメントアウトした部分でしかつかってないクラス用のimportsとかも削除されるので注意
  • Java/Appearance/Type Filters に追加
    • ctrl+space とかで出てこないようにする。
  • Java/Code Style/Code Template を変更
    • Code/Catch block body を
    • throw new RuntimeException(${exception_var});
      • こっちの方が使うことが多い
    • Code/Method を
    • throw new java.lang.UnsupportedOperationException(); // ${todo} Auto-generated method stub
      • こっちの方がわかりやすい!
  • Java/Editor/Template
    • test を消す(JUnit3用)
    • Test を変更( hamcrest 使う用 )
  • Java/Code Style/Orgnize Importを変更
    • Number of static imports need for .* を 1 に変更
  • User Data Collector
    • Enable capture のチェックを外す
      • ごめんなしあ
  • Web/CSS Files , Web/JSP Files, Web/HTML Files
    • Creating fiels の Encoding を ISO 10646/Unicode(UTF-8) に

好みの問題↓

  • Java/Editor/Syntax Colorring
    • keyword 'return' をbold紫
    • Local variable declarations と Local variable references 、Parameter variables を赤紫
  • General/Appearance
    • Show tradisonal style tabs をチェック
      • なんか画面が広くなる気がする

あったら追記予定