JndiPropertiesHidingClassLoader Class — spring-boot Architecture
Architecture documentation for the JndiPropertiesHidingClassLoader class in JndiPropertiesHidingClassLoader.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/testFixtures/java/org/springframework/boot/autoconfigure/jndi/JndiPropertiesHidingClassLoader.java lines 30–44
public class JndiPropertiesHidingClassLoader extends ClassLoader {
public JndiPropertiesHidingClassLoader(ClassLoader parent) {
super(parent);
}
@Override
public Enumeration<URL> getResources(String name) throws IOException {
if ("jndi.properties".equals(name)) {
return Collections.emptyEnumeration();
}
return super.getResources(name);
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free