public class Enhancer extends AbstractClassGenerator
The original and most general callback type is the MethodInterceptor
, which
in AOP terms enables "around advice"--that is, you can invoke custom code both before
and after the invocation of the "super" method. In addition you can modify the
arguments before calling the super method, or not call it at all.
Although MethodInterceptor
is generic enough to meet any
interception need, it is often overkill. For simplicity and performance, additional
specialized callback types, such as LazyLoader
are also available.
Often a single callback will be used per enhanced class, but you can control
which callback is used on a per-method basis with a CallbackFilter
.
The most common uses of this class are embodied in the static helper methods. For
advanced needs, such as customizing the ClassLoader
to use, you should create
a new instance of Enhancer
. Other classes within CGLIB follow a similar pattern.
All enhanced objects implement the Factory
interface, unless setUseFactory(boolean)
is
used to explicitly disable this feature. The Factory
interface provides an API
to change the callbacks of an existing object, as well as a faster and easier way to create
new instances of the same type.
For an almost drop-in replacement for
java.lang.reflect.Proxy
, see the Proxy
class.
Modifier and Type | Class and Description |
---|---|
static interface |
Enhancer.EnhancerKey
Internal interface, only public due to ClassLoader issues.
|
AbstractClassGenerator.ClassLoaderData, AbstractClassGenerator.Source
Constructor and Description |
---|
Enhancer()
Create a new
Enhancer . |
Modifier and Type | Method and Description |
---|---|
Object |
create()
Generate a new class if necessary and uses the specified
callbacks (if any) to create a new object instance.
|
Object |
create(Class[] argumentTypes,
Object[] arguments)
Generate a new class if necessary and uses the specified
callbacks (if any) to create a new object instance.
|
static Object |
create(Class type,
org.springframework.cglib.proxy.Callback callback)
Helper method to create an intercepted object.
|
static Object |
create(Class superclass,
Class[] interfaces,
org.springframework.cglib.proxy.Callback callback)
Helper method to create an intercepted object.
|
static Object |
create(Class superclass,
Class[] interfaces,
org.springframework.cglib.proxy.CallbackFilter filter,
org.springframework.cglib.proxy.Callback[] callbacks)
Helper method to create an intercepted object.
|
Class |
createClass()
Generate a new class if necessary and return it without creating a new instance.
|
protected void |
filterConstructors(Class sc,
List constructors)
Filter the list of constructors from the superclass.
|
protected Object |
firstInstance(Class type)
This method should not be called in regular flow.
|
protected Class |
generate(AbstractClassGenerator.ClassLoaderData data) |
void |
generateClass(ClassVisitor v) |
protected ClassLoader |
getDefaultClassLoader() |
static void |
getMethods(Class superclass,
Class[] interfaces,
List methods)
Finds all of the methods that will be extended by an
Enhancer-generated class using the specified superclass and
interfaces.
|
protected ProtectionDomain |
getProtectionDomain()
Returns the protection domain to use when defining the class.
|
static boolean |
isEnhanced(Class type)
Determine if a class was generated using
Enhancer . |
protected Object |
nextInstance(Object instance) |
static void |
registerCallbacks(Class generatedClass,
org.springframework.cglib.proxy.Callback[] callbacks)
Call this method to register the
Callback array to use before
creating a new instance of the generated class via reflection. |
static void |
registerStaticCallbacks(Class generatedClass,
org.springframework.cglib.proxy.Callback[] callbacks)
Similar to
registerCallbacks(java.lang.Class, org.springframework.cglib.proxy.Callback[]) , but suitable for use
when multiple threads will be creating instances of the generated class. |
void |
setCallback(org.springframework.cglib.proxy.Callback callback)
Set the single
Callback to use. |
void |
setCallbackFilter(org.springframework.cglib.proxy.CallbackFilter filter)
Set the
CallbackFilter used to map the generated class' methods
to a particular callback index. |
void |
setCallbacks(org.springframework.cglib.proxy.Callback[] callbacks)
Set the array of callbacks to use.
|
void |
setCallbackType(Class callbackType)
Set the single type of
Callback to use. |
void |
setCallbackTypes(Class[] callbackTypes)
Set the array of callback types to use.
|
void |
setInterceptDuringConstruction(boolean interceptDuringConstruction)
Set whether methods called from within the proxy's constructer
will be intercepted.
|
void |
setInterfaces(Class[] interfaces)
Set the interfaces to implement.
|
void |
setSerialVersionUID(Long sUID)
Insert a static serialVersionUID field into the generated class.
|
void |
setSuperclass(Class superclass)
Set the class which the generated class will extend.
|
void |
setUseFactory(boolean useFactory)
Set whether the enhanced object instances should implement
the
Factory interface. |
protected Object |
unwrapCachedValue(Object cached) |
protected Object |
wrapCachedClass(Class klass) |
create, getAttemptLoad, getClassLoader, getClassName, getCurrent, getNamingPolicy, getStrategy, getUseCache, setAttemptLoad, setClassLoader, setContextClass, setNamePrefix, setNamingPolicy, setStrategy, setUseCache
public Enhancer()
Enhancer
. A new Enhancer
object should be used for each generated object, and should not
be shared across threads. To create additional instances of a
generated class, use the Factory
interface.Factory
public void setSuperclass(Class superclass)
setInterfaces
will be called with the appropriate argument instead.
A non-interface argument must not be declared as final, and must have an
accessible constructor.superclass
- class to extend or interface to implementsetInterfaces(Class[])
public void setInterfaces(Class[] interfaces)
Factory
interface will
always be implemented regardless of what is specified here.interfaces
- array of interfaces to implement, or nullFactory
public void setCallbackFilter(org.springframework.cglib.proxy.CallbackFilter filter)
CallbackFilter
used to map the generated class' methods
to a particular callback index.
New object instances will always use the same mapping, but may use different
actual callback objects.filter
- the callback filter to use when generating a new classsetCallbacks(org.springframework.cglib.proxy.Callback[])
public void setCallback(org.springframework.cglib.proxy.Callback callback)
Callback
to use.
Ignored if you use createClass()
.callback
- the callback to use for all methodssetCallbacks(org.springframework.cglib.proxy.Callback[])
public void setCallbacks(org.springframework.cglib.proxy.Callback[] callbacks)
createClass()
.
You must use a CallbackFilter
to specify the index into this
array for each method in the proxied class.callbacks
- the callback arraysetCallbackFilter(org.springframework.cglib.proxy.CallbackFilter)
,
setCallback(org.springframework.cglib.proxy.Callback)
public void setUseFactory(boolean useFactory)
Factory
interface.
This was added for tools that need for proxies to be more
indistinguishable from their targets. Also, in some cases it may
be necessary to disable the Factory
interface to
prevent code from changing the underlying callbacks.useFactory
- whether to implement Factory
; default is true
public void setInterceptDuringConstruction(boolean interceptDuringConstruction)
interceptDuringConstruction
- whether to intercept methods called from the constructorpublic void setCallbackType(Class callbackType)
Callback
to use.
This may be used instead of setCallback(org.springframework.cglib.proxy.Callback)
when calling
createClass()
, since it may not be possible to have
an array of actual callback instances.callbackType
- the type of callback to use for all methodssetCallbackTypes(java.lang.Class[])
public void setCallbackTypes(Class[] callbackTypes)
setCallbacks(org.springframework.cglib.proxy.Callback[])
when calling
createClass()
, since it may not be possible to have
an array of actual callback instances.
You must use a CallbackFilter
to specify the index into this
array for each method in the proxied class.callbackTypes
- the array of callback typespublic Object create()
public Object create(Class[] argumentTypes, Object[] arguments)
argumentTypes
parameter, with the given arguments.argumentTypes
- constructor signaturearguments
- compatible wrapped arguments to pass to constructorpublic Class createClass()
create
method.create(Class[], Object[])
public void setSerialVersionUID(Long sUID)
sUID
- the field value, or null to avoid generating field.protected Class generate(AbstractClassGenerator.ClassLoaderData data)
generate
in class AbstractClassGenerator
protected ClassLoader getDefaultClassLoader()
getDefaultClassLoader
in class AbstractClassGenerator
protected ProtectionDomain getProtectionDomain()
AbstractClassGenerator
Default implementation returns null
for using a default protection domain. Sub-classes may
override to use a more specific protection domain.
getProtectionDomain
in class AbstractClassGenerator
null
for using a default)public static void getMethods(Class superclass, Class[] interfaces, List methods)
superclass
- the class that will be extended, or nullinterfaces
- the list of interfaces that will be implemented, or nullmethods
- the list into which to copy the applicable methodspublic void generateClass(ClassVisitor v) throws Exception
Exception
protected void filterConstructors(Class sc, List constructors)
sc
- the superclassconstructors
- the list of all declared constructors from the superclassIllegalArgumentException
- if there are no non-private constructorsprotected Object firstInstance(Class type) throws Exception
wrapCachedClass(Class)
uses Enhancer.EnhancerFactoryData
as a cache value,
and the latter enables faster instantiation than plain old reflection lookup and invoke.
This method is left intact for backward compatibility reasons: just in case it was ever used.firstInstance
in class AbstractClassGenerator
type
- class to instantiateException
- if something goes wrongprotected Object nextInstance(Object instance)
nextInstance
in class AbstractClassGenerator
protected Object wrapCachedClass(Class klass)
wrapCachedClass
in class AbstractClassGenerator
protected Object unwrapCachedValue(Object cached)
unwrapCachedValue
in class AbstractClassGenerator
public static void registerCallbacks(Class generatedClass, org.springframework.cglib.proxy.Callback[] callbacks)
Callback
array to use before
creating a new instance of the generated class via reflection. If you are using
an instance of Enhancer
or the Factory
interface to create
new instances, this method is unnecessary. Its primary use is for when you want to
cache and reuse a generated class yourself, and the generated class does
not implement the Factory
interface.
Note that this method only registers the callbacks on the current thread.
If you want to register callbacks for instances created by multiple threads,
use registerStaticCallbacks(java.lang.Class, org.springframework.cglib.proxy.Callback[])
.
The registered callbacks are overwritten and subsequently cleared
when calling any of the create
methods (such as
create()
), or any Factory
newInstance
method.
Otherwise they are not cleared, and you should be careful to set them
back to null
after creating new instances via reflection if
memory leakage is a concern.
generatedClass
- a class previously created by Enhancer
callbacks
- the array of callbacks to use when instances of the generated
class are createdsetUseFactory(boolean)
public static void registerStaticCallbacks(Class generatedClass, org.springframework.cglib.proxy.Callback[] callbacks)
registerCallbacks(java.lang.Class, org.springframework.cglib.proxy.Callback[])
, but suitable for use
when multiple threads will be creating instances of the generated class.
The thread-level callbacks will always override the static callbacks.
Static callbacks are never cleared.generatedClass
- a class previously created by Enhancer
callbacks
- the array of callbacks to use when instances of the generated
class are createdpublic static boolean isEnhanced(Class type)
Enhancer
.type
- any classEnhancer
public static Object create(Class type, org.springframework.cglib.proxy.Callback callback)
Enhancer
instead of this static method.type
- class to extend or interface to implementcallback
- the callback to use for all methodspublic static Object create(Class superclass, Class[] interfaces, org.springframework.cglib.proxy.Callback callback)
Enhancer
instead of this static method.superclass
- class to extend or interface to implementinterfaces
- array of interfaces to implement, or nullcallback
- the callback to use for all methodspublic static Object create(Class superclass, Class[] interfaces, org.springframework.cglib.proxy.CallbackFilter filter, org.springframework.cglib.proxy.Callback[] callbacks)
Enhancer
instead of this static method.superclass
- class to extend or interface to implementinterfaces
- array of interfaces to implement, or nullfilter
- the callback filter to use when generating a new classcallbacks
- callback implementations to use for the enhanced object