SSL LoaderLeakTest.java
Interaktion und PortierbarkeitJAVA
/* * Copyright (c) 2004, 2021, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
publicstaticvoid main(String[] args) throws Exception { for (int i = 0; i < 100; i++) {
doTest(args.length != 0);
}
}
staticvoid doTest(boolean readAnn) throws Exception {
ClassLoader loader = new SimpleClassLoader(); var c = new WeakReference<Class<?>>(loader.loadClass("C")); if (c.refersTo(null)) thrownew AssertionError("class missing after loadClass"); // c.get() should never return null here since we hold a strong // reference to the class loader that loaded the class referred by c. if (c.get().getClassLoader() != loader) thrownew AssertionError("wrong classloader"); if (readAnn) System.out.println(c.get().getAnnotations()[0]); if (c.refersTo(null)) thrownew AssertionError("class missing before GC");
System.gc();
System.gc(); if (c.refersTo(null)) thrownew AssertionError("class missing after GC but before loader is unreachable");
System.gc();
System.gc();
Reference.reachabilityFence(loader);
loader = null;
// Might require multiple calls to System.gc() for weak-references // processing to be complete. If the weak-reference is not cleared as // expected we will hang here until timed out by the test harness. while (true) {
System.gc(); Thread.sleep(20); if (c.refersTo(null)) { break;
}
}
}
}
@Retention(RUNTIME)
@interface A {
B b();
}
@interface B { }
@A(b=@B()) class C { }
class SimpleClassLoader extends ClassLoader { public SimpleClassLoader() { }
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.