In Java, what is the use case for new or enhancing the class loader?

Viewed 88

In Java, we know class loader is a JVM system which loads the classes into JVM for executiion. When I run a simple Java class , it is getting loaded and executed by the run time system. Here I am not doing anything with respect to the class loading. But I can see, there are various projects in which they are writing a custom class loader or enhancing the existing class loaders . Please let me know the production time use case where class loader enhancement or new class loader is required.

1 Answers
Related