Example usage for org.springframework.core DecoratingClassLoader subclass-usage

List of usage examples for org.springframework.core DecoratingClassLoader subclass-usage

Introduction

In this page you can find the example usage for org.springframework.core DecoratingClassLoader subclass-usage.

Usage

From source file org.kuali.rice.core.api.util.ShadowingInstrumentableClassLoader.java

/**
 * A class loader for which supports instrumentation and load-time weaving of it's classes by "shadowing" the classes
 * of it's enclosing classloader by loading, defining, and transfomring the byte code within the context of this
 * classloader.
 *
 * <p>Much of this code is based on Spring's {@code ShadowingClassLoader}.</p>

From source file org.springframework.instrument.classloading.ShadowingClassLoader.java

/**
 * ClassLoader decorator that shadows an enclosing ClassLoader,
 * applying registered transformers to all affected classes.
 *
 * @author Rob Harrop
 * @author Juergen Hoeller