Dump4j

About Dump4j library

Dump4j - Simple, customizeable library, which allows logging any types of object (otherwise said, dumping) Library has customizeable architecture.

Default implementation uses java reflection api to retrieve object's fields, dom4j for transforming this data to writeable form (XML), and log4j to log the data. Library usage is 3 lines of code, actually:

getFactory()
factory.getDump() or factory.getDump(Class cl) (done to provide correct logging via log4j)

dump.dump(object);
        

Source Code (SVN)

SVN Repository root.

Note
Use this command to anonymously check out the latest project source code: svn checkout http://dump4j.googlecode.com/svn/trunk/ dump4j

API JavaDoc