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
According to JDK7's documentation, the Classloader class added new methods to add parallel classloading capabilities.
This is automatically done when using directly a Classloader instance, but not the case when using a subclass.
Spring is using several helper subclasses in its codebase (see DecoratingClassLoader) - so conditionally calling registerAsParallelCapable (when JDK7+ is detected) could improve class loading performance.