Grails Java

X-Mas Musings #5 – Eclipse to IntelliJ

You have to shell out some bucks, but then you're good to go!

December is for many people a period of reflection or thought. So I decided to reflect upon last year’s things and thoughts — each day until Christmas. This is day 5.

Ted-Vinke-X-Mas-Musings-Banner

I switched to IntelliJ IDEA this year as my primary IDE after having used Eclipse all my life.

Eclipse is one of best IDE’s around and I wrote earlier about the Groovy-Eclipse compiler 2.3 when Grails 2.4 was released, Gradle/Groovy support when Grails 3 was released, Eclipse Mars instead of GGTS with GSP support and debugging Grails 3 in Eclipse.

Around the summer I decided to give IntelliJ a try.

Probbly after the Groovy/Eclipse compiler started failing randomly on me with “assert failed” modal popups whenever I try to save Groovy file. This happened more often with very complex or large Groovy files — which meant: losing last few minutes of work, and usually restart Eclipse.

intellij

There were definately some things I had to get used to:

  • No compiler errors for my Groovy and Grails projects! If I put @CompileStatic on my classes, Eclipse would have shown red lines everywhere code wouldn’t statically compile in the editor. With IntelliJ all is fine until I boot the project or run the tests – only then some Messages-window pops up saying things don’t compile.
  • Almost everything (including above “feature”) Bozhidar Bozhanov (“Bozho”) decribes in why he still prefers Eclipse over IntelliJ – which I won’t repeat here 🙂
  • The friggin’ flippering windows. The Documentation window keeps popping where my cursor is — with the Javadocs of the hovered method/class/whatever — on top of the warning/error which is also shown as a popup. But after twiggling a bit with “Pinned Mode”, “Docked Mode” and “Floating Mode” I finally got it fixed at the bottom of my screen, where it continuously uses some screen estate to show the Javadoc of the current hovered item. Unless I run unit tests which shoves its own window on top instead. And when I place the focus back in the editor itself, whatever tool window was open disappears again, making the code in the editor window “jump” or “scroll” a few lines up or down.
  • Just moving the caret, while selecting a word, per ‘part’ of a camelCasedWord, so I could use the arrows on my keyboard to move to the start of “camel”, to the start of “Cased” and start of “Word”. Eclipse does this out of the box, IntelliJ just jumpt to the beginning or end of the entire word. I had to find and configure this thing called “camelHumps” selection. (This was especially annoying when renaming a variable or method in-place and just wanting to rename only a part of the name) We’re ok now.
  • Renaming e.g. a class by default also ticked ‘Search in comments and strings’ and ‘Search for text occurences’ — which can be a surprise if (seemingly) random words (but similar enough) in all kinds of comments throughout the code base has been renamed too.
  • Much more small things in which IntelliJ is just different.

I can’t begin to sum up where IntelliJ shines — but I’ll try 🙂 — but it includes at least following items:

  • Very good Groovy and Gradle support out of the box!
  • Alt-Enter anywhere brings up context-sensitive options. Run a test, create a test, create subclass, make public/protected/private, convert to closure property, generate missing test methods, remove explicit type, split into declaration and assigment, flip ‘==’, introduce local variable enz enz — the suggestions are limitless. Eclipse also has good Quick-Fixes of course.
  • Great Java 8 support, suggesting lambda notation where appropriate! Even diplaying anonymous inner class usage (collapsed) as if it was written using a lambda expression.
  • Great JavaScript support. If one of my Gradle sub-modules is a JS project it just recognizes it and also gives the proper context-sensitive help where needed.

In Eclipse I had to find and install additional plugins for things I wanted or needed which with IntelliJ just worked out of the box for me.

You have to shell out some bucks for the IntelliJ IDEA Ultimate Edition if you want built-in, proper Groovy, Grails/Spring, JavaScript/TypeScript support (beyond the free trial), and take some ramp-up time to get familar with all features and toggles and their shortcuts and key-mappings, but then you’re good to go!

psst…I also started to use Visual Code more and more (you know Microsoft can make something decent? Ok, TypeScript included) 🙂

1 comment

  1. Welcome at the club Ted. One of my annoyances is the fact that autosuggest/hinting in calls doesn’t work that well… I think it was eclipse that just suggests what the next thing would be. Did you find anything for that that I missed until now?

    Like

Comments are closed.