You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most implementations I analyzed, including the RI, use the following as default classloader:
public ClassLoader getDefaultClassLoader() {
return getClass().getClassLoader();
}
Alternatives, I can think of, which are legal at the moment as well:
Bootstrap classloader
Thread.currentThread().getContextClassLoader()
keyClass.getClassloader()
Possibly will an implementation pass the TCK tests which decides for the TCCL as default. We should be more strict here, so users know precisely when to set the custom class loader.
The basic goal is that implementations should behave consistent.
The text was updated successfully, but these errors were encountered:
Most implementations I analyzed, including the RI, use the following as default classloader:
Alternatives, I can think of, which are legal at the moment as well:
Thread.currentThread().getContextClassLoader()
keyClass.getClassloader()
Possibly will an implementation pass the TCK tests which decides for the TCCL as default. We should be more strict here, so users know precisely when to set the custom class loader.
The basic goal is that implementations should behave consistent.
The text was updated successfully, but these errors were encountered: