JDK-based
AopProxy implementation for the Spring AOP framework,
based on JDK 1.3+
java.lang.reflect.Proxy dynamic proxies .
Creates a dynamic proxy, implementing the interfaces exposed by
the AopProxy. Dynamic proxies cannot be used to proxy methods
defined in classes, rather than interfaces.
Objects of this type should be obtained through proxy factories,
configured by an
AdvisedSupport class. This class is internal
to Spring's AOP framework and need not be used directly by client code.
Proxies created using this class will be thread-safe if the
underlying (target) class is thread-safe.
Proxies are serializable so long as all Advisors (including Advices
and Pointcuts) and the TargetSource are serializable.
author: Rod Johnson author: Juergen Hoeller author: Rob Harrop See Also: java.lang.reflect.Proxy See Also: AdvisedSupport See Also: ProxyFactory |