Software Development

NetBeansIDE and IntellijIDEA From The Eyes of a Long Time Eclipse User

I have been using Eclipse IDE since 2006 and I liked it so much for various reasons. First it is open source and free to use. Eclipse looks pretty neat on Windows OS on which I work most of the time. Occasionally I tried to use NetBeansIDE (before 6.x version) and I didn’t like it because it’s too slow. And I never tried IntellijIDEA because it’s a commercial product and I am 100% sure that my employer is not going to pay $$$ for an IDE.

So over the years I have been using JavaEE based Eclipse version and once I found SpringSource Tool Suite it became my default Java IDE for everything. I like Spring framework very much and I use Spring technologies everyday, both on personal and official projects. STS provides lot of additional features for Spring related technologies like auto-completion in spring xml files, beans graph etc etc. I should mention SpringBoot support in STS specifically. You can create SpringBoot applications with lot of customization options (which modules to use, java version, maven/gradle, java/groovy etc) right from the IDE itself. As of now no other IDE has this much of good support for SpringBoot.

But as everyone knows working with Eclipse isn’t fun all the times. It has it’s own set of problems. I get used to see the NullPointerException or  IllegalArgumentException error alerts all the times. When you press Ctrl + Space you may get auto completion suggestion or get an error alert. If you type too fast and press Ctrl+Space many times then Eclipse might disappear and shows a big alert box with very useful details. If you have many open projects in your workspace and if it contains JPA/JSF/JAX-WS/JAX-RS modules then as soon as you opened your Eclipse it may stuck in Building Workspace state forever. The only way to solve it is End Process via Task Manager.

Till this point its bearable. If you install any plugin which contain any conflicting XML libraries then the real problems start. As soon as you open pom.xml you will get to see error alerts repeatedly, you can’t even close it..it keeps popping up the error alerts. If you are lucky then restarting eclipse might solve the issue or you have to try uninstalling the newly installed plugin(which never solved the problem for me) or start with a new Eclipse altogether.

Even after all these pains I stick to Eclipse because I get used to it. As I said I have been using STS and till STS-3.5.1 version it’s fine and I am OK to live with all the previously mentioned pain points.

But once I downloaded STS-3.6.0 and started using it, things get even worse. First, Gradle plugin didn’t work. After googling for a while there is already a bug filed regarding the same issue. I thought this may be resolved in STS-3.6.1 release but it is not. Then I upgraded Gradle plugin with nightly build and it started working fine. I am very happy. Then I started my SpringBoot application and it worked fine. Great!!. Then I opened another Java class and made some changes and tried to click on Relaunch button. As soon as mouse cursor is on Relaunch button it is showing error alert. Navigate to any other file and put cursor on Relaunch button then again it will show error alert. What the hell!! For almost 4 days I was struggling with these kind of issues only. I Haven’t ever started writing code at all.

I told myself “Enough!! Shut this f***king eclipse and start using some better IDE, come out of you Eclipse comfort zone”.

I have been playing with NetBeansIDE every now and then, and I am aware that NetBeansIDE got lot better than its previous versions, especially from 7.x onwards its very fast and feature rich. A year ago I tried IntellijIDEA Ultimate edition with trial version and it’s totally confusing to me because of my prior Eclipse experience.

When I google for “Eclipse vs NetBeansIDE vs IntellijIDEA” there are lots of articles comparing them and almost every article ends with a conclusion that “IntellijIDEA > NetBeansIDE > Eclipse”. But I though of trying NetBeansIDE and IntellijIDEA myself. So I installed NetBeansIDE 8.0.1 and IntellijIDEA Ultimate Edition 13.

How I feel about NetBeansIDE:

First thing I noticed is NetBeansIDE totally improved over its previous versions. It is fast and feature rich.

Pros:

  • You will get most the Java stuff that you need out-of-the-box. You don’t need to hunt for plugins.
  • If your project is based on JavaEE technologies like CDI/EJB/JPA/JSF/JAX-RS then you will love NetBeansIDE. It has awesome code generators for JPA Entities from Database, JSF views from Entities, JAX-RS resource from Entities etc.
  • Its Maven support is fantastic. Looking up and adding dependencies works out-of-the-box. No need to check “Download Indexes at startup” and perform Rebuild Indexes…You know what I mean!
  • Great support for HTML5 technologies, especially AngularJS. Auto completion for AngularJS directives is amazing.
  • You can download and install many of the popular Javascript libraries right from the IDE itself.
  • It has very good Java8 support. It even shows code recommendations to turn for-loops into Java8 streams and lambdas.
  • Recently I am learning Mobile App development using PhoneGap/Cordova. Getting started with Cordova in NetBeans is a piece of cake.

Cons:

  • No workspace concept. For some people it could be an advantage, but for me its a disadvantage. Usually I maintain multiple workspaces for different projects and at times I would like to open them in parallel.
  • Opening multiple NetBeans IDEs is possible, but it should not be that difficult.
  • At home I installed NB 8.0.1 and Wildlfy 8.0.0.FINAL and worked well. The very same day Wildlfy 8.1.0.FINAL got released and at office I tried to run an app using NB 8.0.1 and Wildlfy 8.1.0.FINAL and it’s not working at all. After pulling off my hair for few hours I figured it out that NB 8.0.1 doesn’t work with Wildlfy 8.1.0 version yet. That’s a little bit odd!! Wildlfy changed that much from 8.0.0 to 8.1.0????
  • I just created a web application and tried to deploy on Tomcat, what should go wrong!! But while deployment its failing. After struggling for few minutes and found answer in StackOverflow that it might be because of Proxy issue. After configuring my corporate proxy details in NetBeans its working fine.
  • But this is not cool. Deploying an app on my local tomcat should not worry about Proxy..right??!!??
  • There is no shortcut for block comment!!! Come on…

Overall I liked NetBeans IDE very much. Being an open source and Free IDE NetBeans is awesome.

How I feel about IntellijIDEA:

Whenever I read about IntellijIDEA user experience, I always here “wow”, “amazing”,”can’t go back to Eclipse/NB” and “I don’t mind paying $$$ for such a wonderful tool”!!. But I struggled a bit to get used to its Project/Module style of code organization because of my previous Eclipse Workspace/Project style experience. Still I am not very comfortable with it but it’s not a blocker.

Pros:

  • No random NullPointerException/IllegalArgumentException exception alerts.
  • Everything can be done from IDE itself. Be it Working with Database, tinkering from Command Prompt, Maven/Gradle tasks execution, RestClient etc etc.
  • AutoCompletion support is just mind blowing. Type sort and Ctrl+Space twice showing sort methods from all Java classes. Wonderful.
  • Interaction with many Version Control Systems works smoothly.
  • Support for other IDE’s key bindings.

Cons: 

  • Well, following may not be really Cons, but from an Eclipse user perspective following are confusing and difficult to get use to it:
  • Project/Module style code organization is very different from other IDEs.
  • I terribly miss right clicking on a web project and choosing Run on Server. It took me 30 mins to figure out how to run a web application on IntellijIDEA. Please provide an option “Run on Server” and open Edit Configuration window to choose the Server and other stuff.

Actually, it is too early for me to say whether IntellijIDEA is best or not because still I am learning to do things in Intellij way. But I can clearly sense that IntellijIDEA is very addictive because of its Editing capabilities and “Everything from IDE” experience. But the major issue is it is very costly and I am 100% sure that my employer won’t pay for IDE though its great productivity booster.

I am actually considering to use IntellijIDEA Community Edition also because it has Java/Groovy/Maven/Gradle support. And SpringBoot can be run as a standalone Java program and no need of Server support.

Overall I feel it is powerful and feature rich IDE and I just need to understand the IntellijIDEA way of doing things.

What Eclipse features I missed from NetbeansIDE/IntellijIDEA:

After playing with NetBeansIDE and IntellijIDEA, I feel Eclipse is better in the following aspects:

  • Support for multiple workspaces and multiple instances
  • Eclipse color scheme for Java editor is pleasant than NetBeans glassy look and IntellijIDEA’s dull grey look.
  • Sensible Eclipse shortcut key bindings. Many of the key bindings don’t include crazy combination of Ctrl+Shift+Alt as in IntellijIDEA.
  • Maven pom editor’s Dependency Hierarchy Tab view which provides a neat view of “from where this jar dependency came”. Simple tree structure looks better than fancy graphs to me.

Conclusion:

All in all, what I came to know is most of the things that you do in one IDE can also be done in other IDEs as well. It is just a matter of getting use to the selected IDEs way of doing things. But if you are spending lot of time fighting with IDE itself then it’s a red flag. You should consider moving to a better IDE.

After playing with NetBeans and IntellijIDEA I came to the conclusion that:


If you have to work with JavaEE projects heavily go with NetBeans. If you can get a license for IntellijIDEA that’s great, if not choose a stable version of STS and live with it. Don’t just upgrade your Eclipse/STS because there is a newer version released. Newer not always means better.

Siva Reddy

Katamreddy Siva Prasad is a Senior Software Engineer working in E-Commerce domain. His areas of interest include Object Oriented Design, SOLID Design principles, RESTful WebServices and OpenSource softwares including Spring, MyBatis and Jenkins.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

7 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Shai Almog
9 years ago

I’ve been a NetBeans user for many years and recently I dabbled with Idea too and its pretty cool. I think one of the main issues with Eclipse is its Mac OS support which is still awful after all these years due to the implementation of SWT. Since so many Java developers use Macs today (JavaOne has had the Apple logo all over the place for years now), Eclipse is problematic there. The shortcuts are configurable, one of the reasons NetBeans has different shortcuts from Eclipse is due to its portability. Eclipse’s shortcuts conflict out of the box with Mac… Read more »

Andreas Haufler
9 years ago

For the sake of completeness: IntelliJ also provides a free Version which is quite powerful. However, we pay for the “pro” version, as the features provided are well worth their money….

Darek Kay
9 years ago

That’s the problem: people use Eclipse for 8 years, want to change their IDE for any common reasons, and expect to learn the new IDE within hours or days, as if they expect just a better version of Eclipse. Additionally, they want to recreate the workflow they are used to (like workspaces). I’m not judging, that’s how software developers think. But this cannot work. You have to fully commit to learn your IDE and its concepts. Otherwise you will miss all those features that simply don’t exist in Eclipse. If you’re considering switching to IntelliJ, I highly recommend this presentation… Read more »

Siva
9 years ago
Reply to  Darek Kay

Hi Darek Kay, You are right. When learning a new tool people always look for similar ways of doing things in his earlier tool. And I know “While using a new tool, learning its way of doing things will be much productive”. I learned it in the hard way while trying to learn JSF by comparing it to Struts :-) As I mentioned in the IntelliJ IDEA section, I am still learning IntellijIDEA ways and I feel I am adopting it (proof is yesterday in office I have to use Eclipse and I am keep hitting Alt + Enter and… Read more »

Charles Queiroz
Charles Queiroz
9 years ago

IntelliJ is bad because I can not use? Seriously? I suggest reviewing their arguments.

Siva
9 years ago

,
I didn’t get your point.
Did I say Intellij is bad anywhere!!?? Actually I am liking it so much.

John McDonnell
John McDonnell
8 years ago

Just a quick note, while NetBeans may not have a concept of workspaces like eclipse does, what it does have is Project Groups, heres a quick blog post I found for them: http://envyandroid.com/project-groups-in-netbeans/

I use this on a daily basis separating different work related projects and even maintaining different groups for personal projects I might have all in my IDE, also NetBeans wont have to close and reopen them when swapping groups, but if you have large project groups it can take some time to swap.

Back to top button