Is there even a question in there? I see some words followed by a question mark, but that doesn't turn it into a proper question. I have no idea what you actually want.
One place where custom class loaders are used is in web application containers. Each web application needs to have a separate classloader, so that its classes can be separated from the classes of other web applications. If all webapps in the container would share the same classloader, it would for example not be possible to for one webapp to load version 1 of a library, and another webapp to load version 2 of the same library. Also, the webapps would be able to see each other's classes, which is not desirable.