vote up 122 vote down star
193

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 9 vote down

It is exceedingly useful to dynamically generate files from templates:

  • Velocity -- Generate text from templates (SQL queries, email, HTML, etc..)
  • jXLS -- Generate XLS files from templates
link|flag
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 7 vote down

AspectJ - a seamless aspect-oriented extension to the Javatm programming language.

Very useful for logging, debugging, testing and more.

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

Ibatis for ORM.

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

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

**java.util**

It is java, it is free, it is good, and I can't live without it.

Don't make it less for live in the core :)

link|flag
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 6 vote down

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

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 6 vote down

Rhino -- http://www.mozilla.org/rhino/

a javascript compiler/interpreter, allowing the execution of javascript within your java app.

link|flag
show 1 more comment
vote up 5 vote down
  • JiBX for XML data-binding.
  • JFreeChart Swing graphs and charts.
  • H2 pure Java embedable database engine.
link|flag
show 1 more comment
vote up 5 vote down

Can't believe we missed Java Service Wrapper

link|flag
vote up 5 vote down

Jython. Yes it's still alive people, and they've just released 2.5 recently. It's quite useful to call Java libraries using less verbose Python syntax in a day-to-day administrative tasks.

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

FreeMarker for templates.

link|flag
vote up 4 vote down
  • Substance A nice Swing LaF.
  • SLF4J Use the logging system that YOU want.
link|flag
vote up 4 vote down

JMonkeyEngine - 3D scene engine Have a look to the demos.

link|flag
vote up 4 vote down

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

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

JTS Topology Suite: If you work with geographic data it's very useful. It's so useful, also C++-programmerswant it, so it was ported to C++, a library named GEOS (Geometry Engine Open Source).

link|flag
vote up 3 vote down

The Java Spell Checker JOrtho can be use very easy with any GUI application.

Website: http://www.inetsoftware.de/products/tools/JOrtho/

link|flag
vote up 3 vote down

Log5j is a wrapper around Log4j that uses Java 5's var-args for an automatic String.format in log messages:

log.debug("IOException while reading %s", exception, file.getName());

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 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 3 vote down

I'm surprised no one has mentioned iBatis (ORM/Persistence for people who like to use actual SQL code) or JMock (mock objects).

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

JDOM, for java XML parsing
http://www.servlets.com/cos/ -- servlet utils including download/upload, etc
bindings to curl for http download/upload
code from the squirrel SQL client for accessing DBs
the original JDBC driver for accessing MySQL.

it takes a while to think about all the stuff that's been useful to you over the years.

link|flag
vote up 2 vote down

Dozer mapping library, very usefule going from JPA generated classes to domain classes

link|flag
vote up 2 vote down

PCJ, Primitive Collections for Java.

This is a the fastest implementation of a Collections framework around primitive datatypes, providing for example Maps with ints as keys or Lists for floats. Much faster and more memory efficient than Sun's classes (where you have to use Integer and Float as wrappers with substantial cost), and also faster than its "competitors" fastutil and trove. Unfortunately no generics and not being maintained anymore - is stable though.

link|flag
vote up 2 vote down

It is a bit subjective, something you can't live without might be useless for me... :-)

Anyway, here are some I bookmarked (I haven't used all of them!):

  • Batik -- SVG parser/viewer.
  • etlFTPj -- A FTP library.
  • TagSoup -- An HTML parser, able to handle the bad HTML we see in real world.
  • StringTemplate -- A (generic) template engine enforcing strict principles (no Turing-complete).
  • FreeMarker -- Another template engine, more procedural, still strict on document/view separation.

There is lot more, that's one of the strong points of Java...

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

OpenSymphony has a really nice set of various open source java projects. The ones I used and enjoyed:

  • Quartz - a full-featured job scheduling system
  • OSCache - a caching solution that includes a JSP tag library and set of classes to perform fine grained dynamic caching of JSP content, servlet responses or arbitrary objects.
  • OSCore - a set of utility-classes (manipulations with strings, dates, xml, etc)

Both Quartz and OSCache are well integrated with Spring.

link|flag

Your Answer

Get an OpenID
or

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