I have several years of professional development using C#, Visual Studio 2003-2010 and Resharper. Now I would like to get some practice with Java. What IDEs (maybe with some plug-ins) would you suggest, so I would not suffer to much from the differences (or at least have similar power to what I'm used to)? In my current work I heavily rely on Resharper for code navigation, search of usages, refactoring, etc. A benefit would be for such IDE to have optional support for dynamic languages like Python or Ruby, they are next on my list, to try.

link|improve this question

feedback

closed as not constructive by Nailuj, dtb, AVD, Filburt, cdeszaq Jan 17 at 13:35

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

up vote 3 down vote accepted

In my opinion, these are the following viable Java IDE's

  • IDEA, made by the same team as Resharper

    • Free and paid variant
    • Most complete editing and refactoring tools
    • Creates it's own project structure files
  • Netbeans: Modern, powerful, easy to use

    • Modern and powerful
    • Easy to use and grow with
    • Can use maven pom.xml files directly or a separate project structure file
  • Eclipse: Probably more powerful, but likely more complex to new users

    • Probably more powerful than Netbeans
    • Probably more complex to use than Netbeans
    • Creates its own project structure files
link|improve this answer
2  
why does everyone keep saying eclipse is more "powerful" than netbeans? – jere Jan 17 at 13:46
by the way, Idea can use project pom.xml too. Sure, it creates it's own project files, but they are derived from pom.xml and updated whenever when pom.xml updates. – Victor Sorokin Jan 17 at 13:55
@jere, Eclipse features more plugins and e.g., better spring-support (Spring-IDE). Whether any of this is actually helpful or needed is up to each of us to decide. – Johan Sjöberg Jan 17 at 14:34
You can also use the pom in eclipse, with the m2eclipse plugin. – Robin Jan 17 at 14:36
@Robin, Victor: Yes, you can use the pom as input, but you still need external project files, making sharing projects slightly less trivial. – Johan Sjöberg Jan 17 at 14:40
show 1 more comment
feedback

I find myself using Eclipse alot for a lot of different languages. The platform is very extensible when it comes to plugins and such. It can easily be extened to support Python and Ruby.

link|improve this answer
feedback

I haven't wrote Java in a long time, but the defacto IDE is definitely Eclipse. I'm sure there are plugins out there for it that do as you want, but I'm not sure what they are called. The only plugin I remember that was great was myEclipse.

link|improve this answer
feedback

I guess eclipse is the right choice for you. It is one of the most common IDE for developing in java and supports many languages. There is a little tool integrated, called Quick Fix It has many features resharper provides you, but some are missing.

link|improve this answer
feedback

In my own opinion Eclipse http://www.eclipse.org/ is the best IDE, after Visual Studio of course ;-) And it works with a ton of languages, project types, etc... Its incredibly customizable. (Maybe too much sometimes, but community support is huge too)

link|improve this answer
feedback

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