8154403: JRT filesystem loaded by JDK8 with URLClassLoader is not closable since JDK-8147460
Reviewed-by: alanb
This commit is contained in:
parent
4935f9d64d
commit
c536913c21
@ -101,10 +101,10 @@ public final class JrtFileSystemProvider extends FileSystemProvider {
|
||||
@Override
|
||||
public FileSystem newFileSystem(URI uri, Map<String, ?> env)
|
||||
throws IOException {
|
||||
Objects.requireNonNull(env);
|
||||
checkPermission();
|
||||
checkUri(uri);
|
||||
|
||||
if (env != null && env.containsKey("java.home")) {
|
||||
if (env.containsKey("java.home")) {
|
||||
return newFileSystem((String)env.get("java.home"), uri, env);
|
||||
} else {
|
||||
return new JrtFileSystem(this, env);
|
||||
|
@ -31,6 +31,7 @@ import java.net.URI;
|
||||
import java.nio.file.FileSystems;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Collections;
|
||||
|
||||
public class WithSecurityManager {
|
||||
public static void main(String[] args) throws Exception {
|
||||
@ -61,7 +62,7 @@ public class WithSecurityManager {
|
||||
|
||||
// check FileSystems.newFileSystem
|
||||
try {
|
||||
FileSystems.newFileSystem(URI.create("jrt:/"), null);
|
||||
FileSystems.newFileSystem(URI.create("jrt:/"), Collections.emptyMap());
|
||||
if (!allow) throw new RuntimeException("access not expected");
|
||||
} catch (SecurityException se) {
|
||||
if (allow)
|
||||
|
@ -30,6 +30,7 @@ import java.nio.file.FileSystems;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Collections;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
/**
|
||||
@ -69,11 +70,12 @@ public class Main {
|
||||
private static FileSystem createFsWithURLClassloader(String javaHome) throws IOException{
|
||||
URL url = Paths.get(javaHome, "jrt-fs.jar").toUri().toURL();
|
||||
URLClassLoader loader = new URLClassLoader(new URL[] { url });
|
||||
return FileSystems.newFileSystem(URI.create("jrt:/"), null, loader);
|
||||
return FileSystems.newFileSystem(URI.create("jrt:/"),
|
||||
Collections.emptyMap(),
|
||||
loader);
|
||||
}
|
||||
|
||||
private static FileSystem createFsByInstalledProvider() throws IOException {
|
||||
return FileSystems.getFileSystem(URI.create("jrt:/"));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @bug 8141609
|
||||
* @bug 8141609 8154403
|
||||
* @summary Verify JDK 8 can use jrt-fs.jar to work with jrt file system.
|
||||
* @run main RemoteRuntimeImageTest
|
||||
*/
|
||||
@ -63,7 +63,6 @@ public class RemoteRuntimeImageTest {
|
||||
|
||||
String java = jdk8Path.resolve("bin/java").toAbsolutePath().toString();
|
||||
String javac = jdk8Path.resolve("bin/javac").toAbsolutePath().toString();
|
||||
|
||||
Files.createDirectories(Paths.get(".", CLASSES_DIR));
|
||||
String jrtJar = Paths.get(TEST_JAVAHOME, JRTFS_JAR).toAbsolutePath().toString();
|
||||
|
||||
@ -121,4 +120,3 @@ public class RemoteRuntimeImageTest {
|
||||
return version.startsWith("\"1.8");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user