vote up 13 vote down star
26

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:

flag

30% accept rate
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 at 17:47

20 Answers

vote up 12 vote down

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|flag
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
vote up 4 vote down

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

link|flag
vote up 4 vote down

Hudson, Maven, trac

link|flag
1  
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 at 17:45
vote up 3 vote down

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

link|flag
vote up 2 vote down

Eclipse with the Test & Performance Tools Platform installed.

link|flag
vote up 2 vote down

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|flag
really? that should be documented somewhere! – dfa Apr 17 at 0:22
vote up 2 vote down
  • IntelliJ IDEA (Anything else is wasting my time)
  • ANT + CI server (Hudson)
  • Issues tracking system. Bugzilla works well. Jira is fine.
  • Profiler, JProfiler
link|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

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

link|flag
+1 to clover too! – Chii Sep 30 at 12:59
vote up 1 vote down

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|flag
[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
But that would be advertising on StackOverflow which is not why I gave the answer :) – Uri Oct 17 '08 at 23:35
vote up 1 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down
  1. Testing tools: JUnit, preferably along with a mocking framework (e.g. Mockito).
  2. A build tool of choice.
link|flag
vote up 0 vote down

emacs (it qualifies for at least 3 tools).

link|flag
vote up 0 vote down
  1. Intellij IDEA
  2. Ant
  3. JUnit and EasyMock
  4. VMware with JBOSS
  5. Jira.
  6. Cobertura and QALab.
link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
Done. Hope it helps. – nzpcmad Nov 3 '08 at 19:57
vote up 0 vote down

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|flag
vote up 0 vote down

my $0.02 worth...

link|flag
vote up 0 vote down
  • IntelliJ IDEA + Vi plugin (best of breed)
  • yourkit profiler (best of breed)
  • Hudson
  • JUnit or TestNG
  • Ant + CI Server
link|flag

Your Answer

Get an OpenID
or

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