Interface InstrumentableClassLoader

  • All Known Implementing Classes:
    ParallelWebappClassLoader, WebappClassLoader, WebappClassLoaderBase

    public interface InstrumentableClassLoader
    Specifies a class loader capable of being decorated with ClassFileTransformers. These transformers can instrument (or weave) the byte code of classes loaded through this class loader to alter their behavior. Currently only WebappClassLoaderBase implements this interface. This allows web application frameworks or JPA providers bundled with a web application to instrument web application classes as necessary.

    You should always program against the methods of this interface (whether using reflection or otherwise). The methods in WebappClassLoaderBase are protected by the default security manager if one is in use.

    Since:
    8.0, 7.0.64
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void addTransformer​(java.lang.instrument.ClassFileTransformer transformer)
      Adds the specified class file transformer to this class loader.
      java.lang.ClassLoader copyWithoutTransformers()
      Returns a copy of this class loader without any class file transformers.
      void removeTransformer​(java.lang.instrument.ClassFileTransformer transformer)
      Removes the specified class file transformer from this class loader.
    • Method Detail

      • addTransformer

        void addTransformer​(java.lang.instrument.ClassFileTransformer transformer)
        Adds the specified class file transformer to this class loader. The transformer will then be able to instrument the bytecode of any classes loaded by this class loader after the invocation of this method.
        Parameters:
        transformer - The transformer to add to the class loader
        Throws:
        java.lang.IllegalArgumentException - if the transformer is null.
      • removeTransformer

        void removeTransformer​(java.lang.instrument.ClassFileTransformer transformer)
        Removes the specified class file transformer from this class loader. It will no longer be able to instrument the byte code of any classes loaded by the class loader after the invocation of this method. However, any classes already instrumented by this transformer before this method call will remain in their instrumented state.
        Parameters:
        transformer - The transformer to remove
      • copyWithoutTransformers

        java.lang.ClassLoader copyWithoutTransformers()
        Returns a copy of this class loader without any class file transformers. This is a tool often used by Java Persistence API providers to inspect entity classes in the absence of any instrumentation, something that can't be guaranteed within the context of a ClassFileTransformer's transform method.

        The returned class loader's resource cache will have been cleared so that classes already instrumented will not be retained or returned.

        Returns:
        the transformer-free copy of this class loader.