Using the standard getClassLoader()
may not return the right class loader in a JEE context. Instead, go through the
currentThread
.
ClassLoader cl = this.getClass().getClassLoader(); // Noncompliant
ClassLoader cl = Thread.currentThread().getContextClassLoader();