Merge branch '1.2.x'

This commit is contained in:
Andy Wilkinson 2015-08-03 15:50:26 +01:00
commit 4660a3ed4d

View File

@ -34,6 +34,7 @@ import org.springframework.lang.UsesJava7;
*
* @author Phillip Webb
* @author Dave Syer
* @author Andy Wilkinson
*/
public class LaunchedURLClassLoader extends URLClassLoader {
@ -108,8 +109,14 @@ public class LaunchedURLClassLoader extends URLClassLoader {
@Override
public boolean hasMoreElements() {
return rootResources.hasMoreElements()
|| localResources.hasMoreElements();
try {
Handler.setUseFastConnectionExceptions(true);
return rootResources.hasMoreElements()
|| localResources.hasMoreElements();
}
finally {
Handler.setUseFastConnectionExceptions(false);
}
}
@Override