Skip to content

Instantly share code, notes, and snippets.

@nipunthathsara
Last active April 11, 2020 10:01
Show Gist options
  • Save nipunthathsara/327356cd114d7ae1ee4f9067332ecff9 to your computer and use it in GitHub Desktop.
Save nipunthathsara/327356cd114d7ae1ee4f9067332ecff9 to your computer and use it in GitHub Desktop.
Launcher$ExtClassLoader java.ext.dirs
...
static class AppClassLoader extends URLClassLoader {
static {
ClassLoader.registerAsParallelCapable();
}
public static ClassLoader getAppClassLoader(final ClassLoader extcl)
throws IOException
{
final String s = System.getProperty("java.class.path");
final File[] path = (s == null) ? new File[0] : getClassPath(s);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment