public class WebSphereLoadTimeWeaver extends Object implements LoadTimeWeaver
LoadTimeWeaver implementation for WebSphere's instrumentable ClassLoader.
Compatible with WebSphere 7 as well as 8 and 9.| 构造器和说明 |
|---|
WebSphereLoadTimeWeaver()
Create a new instance of the
WebSphereLoadTimeWeaver class using
the default class loader. |
WebSphereLoadTimeWeaver(ClassLoader classLoader)
Create a new instance of the
WebSphereLoadTimeWeaver class using
the supplied ClassLoader. |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
addTransformer(ClassFileTransformer transformer)
Add a
ClassFileTransformer to be applied by this
LoadTimeWeaver. |
ClassLoader |
getInstrumentableClassLoader()
Return a
ClassLoader that supports instrumentation
through AspectJ-style load-time weaving based on user-defined
ClassFileTransformers. |
ClassLoader |
getThrowawayClassLoader()
Return a throwaway
ClassLoader, enabling classes to be
loaded and inspected without affecting the parent ClassLoader. |
public WebSphereLoadTimeWeaver()
WebSphereLoadTimeWeaver class using
the default class loader.ClassUtils.getDefaultClassLoader()public WebSphereLoadTimeWeaver(@Nullable
ClassLoader classLoader)
WebSphereLoadTimeWeaver class using
the supplied ClassLoader.classLoader - the ClassLoader to delegate to for weavingpublic void addTransformer(ClassFileTransformer transformer)
LoadTimeWeaverClassFileTransformer to be applied by this
LoadTimeWeaver.addTransformer 在接口中 LoadTimeWeavertransformer - the ClassFileTransformer to addpublic ClassLoader getInstrumentableClassLoader()
LoadTimeWeaverClassLoader that supports instrumentation
through AspectJ-style load-time weaving based on user-defined
ClassFileTransformers.
May be the current ClassLoader, or a ClassLoader
created by this LoadTimeWeaver instance.
getInstrumentableClassLoader 在接口中 LoadTimeWeaverClassLoader which will expose
instrumented classes according to the registered transformerspublic ClassLoader getThrowawayClassLoader()
LoadTimeWeaverClassLoader, enabling classes to be
loaded and inspected without affecting the parent ClassLoader.
Should not return the same instance of the ClassLoader
returned from an invocation of LoadTimeWeaver.getInstrumentableClassLoader().
getThrowawayClassLoader 在接口中 LoadTimeWeaverClassLoader; should return
a new instance for each call, with no existing state