up vote 25 down vote favorite
33
share [g+] share [fb]

Java doesn't seem nearly as "well served" as .NET with tool lists on the Internet. There's James Selvakumar’s article entitled "Must have tools for a Java Developer" which has items I don't agree with. (Do FireFox and MySQL qualify as development tools?).

There is also the Java Power Tools book.

Assuming you already have a half-decent IDE and source safe repository, what three Java tools are on your "must-have" list?

Update (03/11) : Summary of the answers:

link|improve this question

50% accept rate
1  
This is basically a "poll", and as such should be CW, in my opinion. Also, this kind of question would work better with a clear "one tool per answer" rule. – Jonik Jun 8 '09 at 17:47
feedback

21 Answers

I don't want a half-decent IDE, I want IntelliJ IDEA.

Also a decent profiler is very useful. The NetBeans one is usable and free, but JProfiler is preferable.

EDIT: My 3 recommended free tools would be Hudson, FindBugs and Cobertura.

link|improve this answer
1  
IntelliJ IDEA is great! I use it at work, I like it so much more than eclipse that I'm tempted to pay the hefty license fee to get it at home. – TM. Oct 17 '08 at 1:12
The link to Hudson is wrong. It should be: hudson.dev.java.net – nzpcmad Oct 17 '08 at 1:24
I fixed the link to Hudson. However, the change message has a typo in it (K is next to an X on Dvorak). :-) – Chris Jester-Young Oct 17 '08 at 2:02
feedback

JIRA. Admittedly not a a Java-specific tool (though it is written in Java).

link|improve this answer
feedback

Eclipse with the Test & Performance Tools Platform installed.

link|improve this answer
feedback

Hudson, Maven, trac

link|improve this answer
2  
I'd give Hudson a resounding +1, but can't, as you put Maven in the same answer, and I don't see Maven as a "must-have" tool. – Jonik Jun 8 '09 at 17:45
feedback

I really like to work on a project with Maven2 (for build management), Hudson (for Continuous Integration) and Sonar (for software quality control).

link|improve this answer
feedback

javap. :-) Lets you figure out exactly how code gets translated, especially if you're writing code in, say, Jython or Groovy.

link|improve this answer
feedback

I use a tool (that I developed) which tracks everything I do (and lets me quickly inject notes) to create sort of a journal that I can then use when returning to things. It helps me track all those little ideas and realizations, etc.

The same tool also "pushes" things that I tagged in my functions (assumptions, notes, "do" and "don't do" directives). When when I look at a bunch of calls, calls to targets that have that information are decorated, helping me remember that there are certain things I need to know aobut that service.

link|improve this answer
[If anybody wants to see the tool, emoose.cs.cmu.edu] – Uri Oct 17 '08 at 3:53
@Uri, if you edit your post to add the URL it will be more visible to others ;-) – johnstok Oct 17 '08 at 22:44
1  
But that would be advertising on StackOverflow which is not why I gave the answer :) – Uri Oct 17 '08 at 23:35
feedback

pack200. Expect a dramatic size reduction of your distribution jar files. Even your 50 MB rt.jar can compress to less than 5 MB using pack200 + 7zip (or NSIS installer that also uses LZMA). Nice for distributing applications via web.

link|improve this answer
really? that should be documented somewhere! – dfa Apr 17 '09 at 0:22
We do the opposite: create uncompressed jars, because packing them in a zip or lzma installer makes the distribution bundle smaller than perfectly compressed jars. – Mike L. Dec 27 '10 at 19:54
feedback
  • IntelliJ IDEA (Anything else is wasting my time)
  • ANT + CI server (Hudson)
  • Issues tracking system. Bugzilla works well. Jira is fine.
  • Profiler, JProfiler
link|improve this answer
feedback

Next to the big list of tools, I'd like to add clover and bamboo which are both great products.

link|improve this answer
+1 to clover too! – Chii Sep 30 '09 at 12:59
feedback

1) Xemacs + IDE(eclipse, idea or netbeans) with powerful debugger like Firebug, etc
2) yourkit profiler
3) wireshark/wsmonitor/SoapUI/Fiddler

link|improve this answer
feedback

emacs (it qualifies for at least 3 tools).

link|improve this answer
feedback

I agree with most of the @Dan Dyer choices. I prefer Yourkit for a profiling and I'd add JAD, JClasslib and UMLet (not really Java specific) into the mix.

link|improve this answer
feedback

my $0.02 worth...

link|improve this answer
feedback

My only "must have" items are gvim and make. And Arrogant Bastard Ale.

link|improve this answer
feedback
  1. Testing tools: JUnit, preferably along with a mocking framework (e.g. Mockito).
  2. A build tool of choice.
link|improve this answer
feedback
  1. Intellij IDEA
  2. Ant
  3. JUnit and EasyMock
  4. VMware with JBOSS
  5. Jira.
  6. Cobertura and QALab.
link|improve this answer
feedback

Just a thought but in the summary of answers can you link all those tools to their respective homepages ? Would be very helpful. :)

link|improve this answer
Done. Hope it helps. – nzpcmad Nov 3 '08 at 19:57
feedback

nowdays my java toolbox contains:

  • netbeans
  • maven (with plugins for cobertura, findbugs, PMD)
  • ant (sometimes :))
  • junit 4.5 (theories)
  • mockito
  • antlr
  • glassfish
  • hudson
  • mercurial is my SCM of choice slowly migrating from subversion
link|improve this answer
feedback
  • IntelliJ IDEA + Vi plugin (best of breed)
  • yourkit profiler (best of breed)
  • Hudson
  • JUnit or TestNG
  • Ant + CI Server
link|improve this answer
feedback

Jester does some "semantic" code coverage by making small changes in your source code and checks if you test still pass. Frankly, Jester tests your tests.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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