views:

137

answers:

1

Starting with Java 5 there's an option to add Java Agents to the class loader.

Have you written any Agents? have you used any Agents? What are interesting uses of Agents?

+1  A: 

I have used various java profilers that use this feature. A good open source java profiler that uses this is Profiler4j (http://profiler4j.sourceforge.net).

This is a great tool for finding performance bottlnecks in your java code.

Neal Donnan