vote up 121 vote down star
188

I've never seen a good list of free Java libraries.

What are some of your can't-live-without Java libraries?

Note: to keep this poll as useful as possible, please remember:

  • Post only one library per answer
  • We don't want duplicate answers, so before posting check if the library has been mentioned already
  • When adding a new library, provide a short summary of what it does / why you think it's useful
flag
1  
Since no-one seems to have opinions, I'll just be bold (like they say in Wikipedia) and remove the Summary as it stands now. (If someone wans to re-add it, please consider other options than a categorised list.) – Jonik Jun 8 at 18:12
show 9 more comments

116 Answers

vote up 6 vote down

Apache Wicket, POJO-based web application framework. That description is short but it's beyond powerful, check the examples from the site and you should understand why.

link|flag
vote up 1 vote down

Stripes framework

It's a lightweight annotation-driven presentation framework.

Freemarker

A superb templating engine.

link|flag
show 1 more comment
vote up 2 vote down

json-lib provides convenient functionality for parsing JSON strings into/out of Java objects. This is quite helpful if you work on Ajax web apps.

link|flag
vote up 1 vote down

JiBX, a seriously underused XML mapping lib

link|flag
vote up 0 vote down

I even work with:

  • Ant for building and deploy of software.

  • Struts for developing web application.

link|flag
vote up 4 vote down

XOM

XOMâ„¢ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with Java that strives for correctness, simplicity, and performance, in that order.

link|flag
vote up 0 vote down

Piccolo2D (formerly Piccolo)

Toolkit for development of 2D structured graphics programs, in general, and Zoomable User Interfaces (ZUIs), in particular. Good for highly interactive user interfaces.

link|flag
show 1 more comment
vote up 4 vote down

The Apache JXPath is a great little library, yet remarkably unknown. It allows you to access Java object methods using XPath-like syntax. For example, rather than writing:

for (Person p : getCompany().getDepartment().getPeople()) {
   if(p.getName().equals("Brian") {
      ...

You can write:

  JXPath.newContext(getCompany()).getValue("/Department/People[@name='Brian']");

(A trivial example. XPath can do so much more)

It doesn't make so much sense hardcoding this, but it's very useful for configs etc.

link|flag
show 1 more comment
vote up 2 vote down

DWR (Direct Web Remoting) - Makes it quite easy to do Ajax calls to server-side Java code from JavaScript running in the browser.

link|flag
vote up 2 vote down

Dom4J - Library for XML / XPath / XSLT handling

link|flag
show 1 more comment
vote up 8 vote down

Selenium - automated UI testing (or acceptance testing) framework for web applications. Getting up to speed and making your tests stable enough for fully automated continuous integration probably won't be easy, but once you do, it's quite cool what you can do with Selenium.

In case you're totally new to this, here's a summary: You can write test cases in pure Java, JUnit-style, and when you run them, Selenium launches e.g. Firefox and does all kinds of stuff (clicks on links, types into forms, does assertions about page content, etc.) against your webapp. (This is just one way of using Selenium - you can also record tests with Selenium IDE, or use other languages such as Python or C# to write them.)

link|flag
vote up 6 vote down

LogBack for logging. After using logback, log4j seems antiquated.

link|flag
vote up 1 vote down

I find this to be a good list of free Java libraries http://java-sources.org/

link|flag
vote up -2 vote down

Here are my choices.

  1. JUnit
  2. Log4J
  3. Apache Commons Configuration
  4. FindBugs (it is a tool rather than a library)
link|flag
show 1 more comment
vote up 0 vote down

I use jcharts quite a bit. Great for creating a variety of graphics.

link|flag
vote up 4 vote down

GWT - If your Javascript skills are not adequate enough for stunning AJAX applications

link|flag
vote up 5 vote down

Can't believe we missed Java Service Wrapper

link|flag
vote up 6 vote down

Terracotta

With it you can, for example, make a server-side application support clustering without having to litter your code with clustering infrastructure. You basically define "shared roots", globally distributed methods, instrumented classes (whose instances will be passed between JVMs), etc, in a configuration file, and in Java code just make sure access to those is correctly synchronized.

(Terracotta can be used in other scenarios too, but clustering is what I'm most familiar with.)

It's open source and free (for most uses at least), but commercial licensing options and support are also available.

link|flag
vote up 4 vote down

XMLBeans - XMLBeans is a technology for accessing XML by binding it to Java types. Why work with XML when you can work with classes/objects?

link|flag
show 1 more comment
vote up 0 vote down

RichFaces is an open source framework that adds Ajax capability into existing JSF applications without resorting to JavaScript, with a huge library of rich components and skinnability support.

link|flag
vote up -2 vote down

Considering that only ONE must be voted for regardless of domain/context/subject/project/etc, I'd definitely have to vote for Log4J since it is the most used (just about every class references it) and the most practical for me.

Jeach!

link|flag
1  
Then why not vote it up (stackoverflow.com/questions/130095/…) instead of adding duplicate answer :-) – Jonik Apr 14 at 11:08
show 1 more comment
vote up 11 vote down

Surprisingly, one good facade lib for logging (better than commons logging) is missing:

(EDIT: removed JAXB, was already suggested -- also, as per jonik's suggestion, better split this up)

link|flag
show 4 more comments
vote up 2 vote down

Also, for JSON processing, a full-featured package that does streaming read/write, tree model and full data binding (lists, maps, primitives and beans, without custom code):

link|flag
vote up 3 vote down

JUNG - Java Universal Network/Graph Framework

Comes with many standard graphing algorithms. Provides some sane algorithms to lay out vertices in visualizations.

link|flag
vote up 2 vote down
link|flag
vote up 3 vote down
  • Name: GNU Trove
  • What: primitive collections (avoids autoboxing/unboxing of primitives to objects)
  • Competition: pcj, but Trove is more stable and recently maintained. May be faster too.
  • Why: faster and lighter on RAM than object-based collections.

Suggested Uses: ANY time you're storing a lot of ints, chars, or longs in memory and running out of memory. Doubly useful if collections are having items added/removed/modified a lot, because these operations are much faster on primitive objects.

Also useful in cases where very predictable performance is needed and garbage collection pauses cause problems.

ANYTHING that does work with graph-style relationships between RAM-expensive objects will benefit, because you don't need to store the objects in memory, just an int or long unique identifier for each. Persist the objects to disk, and let TIntIntHashMaps store relationships. You can store 8x as many relationships in memory for the same RAM use as a vanilla HashMap.

link|flag
1  
we've found fastutil to be as good or better, and has more features. – Kevin Bourrillion Nov 5 at 18:15
1  
I don't think fastutil was out when I first looked for this. It does seem more full-featured, but isn't it kind of a large library, with all the different collection variants? – BobMcGee Nov 5 at 22:39
vote up 2 vote down

StringTemplate as a general purpose templating engine. It's simple yet ingenious...

link|flag
vote up 0 vote down

Name: Functional Java

Website: http://code.google.com/p/functionaljava

Purpose: Provides first-class functions, generic compound types, immutable (persistent) data structures, lazy (infinite) lists, parser combinators, actor concurrency, specification-based testing, flexible replacements for toString(), equals(), and hashCode(), and more.

link|flag
vote up 0 vote down

I've found AjaxTags very useful for DisplayTag updates without page refreshes and building servlet based autocompletes. It's one of several libraries for ajax development with minimal javascript coding. The site also has some great demo to try out.

AjaxTags

link|flag
vote up 3 vote down

I recommend the Simple XML library for XML serialization. It can do virtually anything you need. Add a few annotations and you're done or you can customize everything to make it deserialize a 3rd party XML format into your classes. And, as the name suggests, it is really simple. Great documentation, under active development, top notch stuff.

link|flag

Your Answer

Get an OpenID
or

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