Monthly Archives: May 2019

Something about class loading, P. 3

In the previous part we have found, that default system class loader prevents the execution of our overriden findClass() method. The first idea which is coming there – we have to  get rid of default Sun-specific class loader in the … Continue reading

Posted in Uncategorized | Leave a comment

Something about class loading, P. 2

Here I would like to continue the theme about customization of class loading. The JDK documentation states what if we want to customize class loader we should to override in subclass the method findClass(String). This is correct because the default implementation … Continue reading

Posted in Uncategorized | Leave a comment

Something about class loading, P. 1

Class loaders are often the subject of interview question and are described in many popular articles what you can find in the internet. But many important aspects of class loading are not highlighted or simply skipped by authors. I would … Continue reading

Posted in Uncategorized | Leave a comment