vote up 4 vote down star
7

I have heard from people who swear by one or the other. Both are full-featured, excellent IDEs. But each has slightly different strengths. This is not meant to turn into a holy IDE war. Please downvote any flamebait answers. Thanks.

This is the analog of this question.

flag

56% accept rate
Mmmm..., getting IntelliJ for free for "individual developers" ? ;) – VonC Jan 20 '09 at 13:40
:) It's an important difference. – Motlin Jan 20 '09 at 15:53

11 Answers

vote up 1 vote down

Since Eclipse 3.3 (but it can be done before using a plugin), you can automatically execute actions while saving a Java file:

  • organize imports
  • format source code
  • some other actions (like adding annotations, removing unnecessary casts...)

This can be configured in Preferences > Java > Editor > Save actions.

link|flag
vote up 0 vote down

My favorite Eclipse features:

  • AspectJ integration that includes navigation between aspects and the code, annotation markers showing where aspects are applied, cross reference view, common open typed dialog showing aspect types (recently added)
  • OSGi tooling (aka PDE), editing and optimizing OSGI manifest, refactorings specific to OSGi and declarative services editor (currently in the works)
link|flag
vote up 0 vote down

In eclipse you can maximize the editor and in IntelliJ you can click escape, which is similar functionality. But in eclipse you can restore. There's no equivalent "un-maximize" in IntelliJ which is even more frustrating.

link|flag
The same shortcut used to maximize the editor can also be used to "un-maximize" the editor afterwards. – Ruben Jan 22 '09 at 8:39
vote up 1 vote down

The open nature of Eclipse platform makes thrive the plugin writers community. There are tons of plugins available for all kind of tasks.

link|flag
The question was about things possible in Eclipse not possible in IDEA. Do you mean writing plugins is not possible for IDEA? – Pavel Feldman Jan 22 '09 at 21:30
I mean there are many more plugins for Eclipse than for IDEA. – Peter Severin Jan 23 '09 at 8:39
I do count number of plugins as direct benefit. Some functionality, available in Eclipse as plugins (like better JS support) is embedded in IDEA. – Pavel Feldman Jan 25 at 23:59
vote up 0 vote down

In eclipse it is possible to get annoyed by making a 10x10 editing area ( cols/row ) and see all the other windows at the same time.

In IntelliJ this in not possible since the 'ESC' key will close them all.

Ok, ok, I'm sorry I have to do it, shoot me now

link|flag
You can just double-click the title bar of the editor area in Eclipse and it will maximise it - sending the other windows into pop-out folders on the side. – RodeoClown Jul 21 at 0:34
vote up 9 vote down

My favourite small annoyance in idea (and favourite small feature in eclipse) is the positioning of the character when typing an opening curly brace (e.g. "{") or a semicolon. You'll have to enable it in eclipse (Window/Preferences/Java/Editor/Typing: "Automatically insert at correct position: Semicolon, Braces")

With this just type ahead ("|" is the caret position)

while(|

results (no magic yet) in

while(|)

now type true{, results in

while(true) {|

So simple, yet so powerful.

Also, in (e.g.)

System.out.println("Hello world")

with the caret anywhere in that line, typing a semicolon will automagically type it at the end of the line. Backspace corrects, just like the usual autocorrection in your favourite wordprocessor.

Priceless. I'm physically no longer able to type a semicolon at the correct position on first try :)

link|flag
1  
You want to try CTRL-SHIFT-ENTER in IDEA. It will "complete" the line in both cases – oxbow_lakes Feb 15 at 18:33
Thanks, that was news for me - though I can't get my grip around all those key combinations idea uses. ';' and '{' are so much more intuitive. I'll be working in idea next week and will try to remember... ;-) – Olaf Feb 20 at 18:19
vote up 0 vote down

Idea has no drools plugin and external editors (like excel) are hard to integrate.

link|flag
vote up 2 vote down

The biggest annoyance I've found (using both) is that in Eclipse I can create Ant Launch tasks. These tasks allow me to run the same ant task in the same build file using different sets of properties/arguments without editing each time.

In IDEA, properties are set across the entire build file. So not only can you not run the same ant task with different properties without editing, but you can't run different ant tasks with different properties unless they are in different build files.

link|flag
vote up 8 vote down

As far as I know there is no alternative to eclipse's excellent Mylyn task plugin in IntelliJ.

link|flag
vote up 2 vote down

Only eclipse allows you to step through an ant build in the debugger.

link|flag
vote up -2 vote down

A working subversion integration, have a look at the bugs of the idea subversion plugin.

link|flag
A whopping 2 issues more than subclipse.tigris.org/issues/… – krosenvold Jan 20 '09 at 13:34
Subversion integration appears to work pretty well for me in IntelliJ 7.0.5. No issues that I've seen. – duffymo Jan 20 '09 at 13:44
Subversion integration also works well for me in 7.0.x and 8.x. Working with a very large CVS repository on the other hand was a problem for me in the 7.x. – Ruben Jan 20 '09 at 13:49
I work with eclipse, idea 7 and idea 8. The subversion plugin of idea has a very strange behaviour resulting in partial commits (as the lok´cal changes cache is not up to date), showing [partial] prefixes in incoming history. – Arne Burmeister Jan 20 '09 at 18:00
Refactorings like moving packages often result in unexpected changes like creation of the target dir and moving or worse replacing all files one by one. This makes later merges harder than using a commandline. Also the build in merge functionality of idea often creates garbage. – Arne Burmeister Jan 20 '09 at 18:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.