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
The class path passed to Java must be visible by the system class loader. As it stands in OSv, it is only available to the AppClassLoader. This doesn't comply with the spec and has major implications:
Calls to ClassLoader.getSystemResource, ClassLoader.getSystemResources, and ClassLoader.getSystemResourceAsStream will fail to find resources.
Calls to ClassLoader.findSystemClass will fail to find the class
All custom class loaders created by the application with no explicit parent use the system class loader as their parent. As the system class loader is not initialized properly, all such class loaders will fail to behave as expected.
The text was updated successfully, but these errors were encountered:
The class path passed to Java must be visible by the system class loader. As it stands in OSv, it is only available to the
AppClassLoader
. This doesn't comply with the spec and has major implications:ClassLoader.getSystemResource
,ClassLoader.getSystemResources
, andClassLoader.getSystemResourceAsStream
will fail to find resources.ClassLoader.findSystemClass
will fail to find the classThe text was updated successfully, but these errors were encountered: