ShadowingClassLoader can be constructed without default excludes

Issue: SPR-15439
This commit is contained in:
Juergen Hoeller 2017-04-12 15:34:50 +02:00
parent d12d5f3455
commit 1735ba22cb
1 changed files with 18 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2016 the original author or authors. * Copyright 2002-2017 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -60,14 +60,28 @@ public class ShadowingClassLoader extends DecoratingClassLoader {
/** /**
* Create a new ShadowingClassLoader, decorating the given ClassLoader. * Create a new ShadowingClassLoader, decorating the given ClassLoader,
* applying {@link #DEFAULT_EXCLUDED_PACKAGES}.
* @param enclosingClassLoader the ClassLoader to decorate * @param enclosingClassLoader the ClassLoader to decorate
* @see #ShadowingClassLoader(ClassLoader, boolean)
*/ */
public ShadowingClassLoader(ClassLoader enclosingClassLoader) { public ShadowingClassLoader(ClassLoader enclosingClassLoader) {
this(enclosingClassLoader, true);
}
/**
* Create a new ShadowingClassLoader, decorating the given ClassLoader.
* @param enclosingClassLoader the ClassLoader to decorate
* @param defaultExcludes whether to apply {@link #DEFAULT_EXCLUDED_PACKAGES}
* @since 4.3.8
*/
public ShadowingClassLoader(ClassLoader enclosingClassLoader, boolean defaultExcludes) {
Assert.notNull(enclosingClassLoader, "Enclosing ClassLoader must not be null"); Assert.notNull(enclosingClassLoader, "Enclosing ClassLoader must not be null");
this.enclosingClassLoader = enclosingClassLoader; this.enclosingClassLoader = enclosingClassLoader;
for (String excludedPackage : DEFAULT_EXCLUDED_PACKAGES) { if (defaultExcludes) {
excludePackage(excludedPackage); for (String excludedPackage : DEFAULT_EXCLUDED_PACKAGES) {
excludePackage(excludedPackage);
}
} }
} }