views:

872

answers:

2

Hi all,

Does anyone know of a good (and thorough) tutorial about Java class loading, how to extend that mechanism and how to actually work with the extension?

Thanks!

+1  A: 

The Mindprod Java Glossary has a good description of what a classloader is and lists tutorials and technical articals at the end of the page.

rsp
+3  A: 

There's obviously Sun's trail which gives you the technical foundations. I find that despite being thirteen years old(!) this JavaWorld article is still a very good place to start - the technicalities of classloading haven't changed much or at all since then, to my knowledge. (Someone please correct this if there have been any important changes since then!).

IBM are usually good for technical Java articles, and they don't disappoint here. O'Reilly also have a more recent article that covers much the same thing but has a pretty diagram in it. :-)

Andrzej Doyle