Critical tools that every Java Developer should have in his toolbelt?

5.8k Views Asked by At

I was trying to compile a list of tools that a good Java Developer should be know of, and keep in his Developer Tool Belt

I can think of a few

  • Eclipse Development Environment - There are other IDEs, but you should know how Eclipse of eclipse.
  • JUnit - Java Unit Testing Framework. Of course there are others, but...
  • ANT
  • Maven
  • Soap UI - for testing SOAP endpoints
  • jrat - Java Profiler. I don't know of other good Java profilers
  • Java Decompiler - For when you just have to know what's in the jar file
7

There are 7 best solutions below

0
On

understanding of all major version control systems like:

  • perforce
  • cvs
  • svn
  • git
  • etc.

and of course the jdk!

0
On
  • VisualVM - for low level memory profiling
  • Eclipse MAT - for high level memory profiling
  • JMeter - for performance testing
  • Mockito, EasyMock, PowerMock - for mocking
  • FindBugs, Checkstyle, PMD - for static code analysis
0
On
  • Hudson, near the top of the list.
  • visualVM - good enough for most profiling needs (and I've heard of a number of Java profilers, but never of jrat)
  • Cobertura or Emma for code coverage
0
On
  • Continuous integration server: CruiseControl, Hudson, etc.
  • Dependency injection: Google Guice, Spring, PicoContainer
  • Slf4J: Simple Logging Facade for Java
  • Mockito: Mocking Library
  • Not Java specific but nonetheless essential: a good distributed source control (Git or Mercurial)
0
On

Critical

  • Clean text editor ( Textmate, gVim )
  • JDK ( java, javac, javap etc. )
  • A webbrowser to read the javadocs

Non-critical

All those you mention but s/Eclipse/IntelliJ Idea/g

0
On
0
On

Useful in building your apps quickly: 1. onejar - helps in quickly create executable jar with dependency and deploy for users. 2. Vaadin for building rich UI with ease.