Hi,
I need to load Singleton classes multiple times.I want to load them using different classloaders .How can I do it? (Even if I create a custom classloader ,I am not able to obtain different references when I initiate the classloader instances using 'new CustomClassLoader()'.I am delegating the control to the parent ClassLoader class in the loadClass() method for loading the class ). If I get different classloader for a class, will the objects created in the loaded class also will use the same classloader?
Thanks,
Srini