The Source for Java Technology Collaboration
User: Password:
Register | Login help    

Search

Online Books:
java.net on MarkMail:


Blog Archive for crazybob during June 2004

dynaop uses class proxies to apply aspects to plain classes. Unlike dynamic proxies, class proxies do not require an interface. As a tradeoff, the framework must instantiate the object for you. The ProxyFactory.extend() method creates class proxies by extending classes or interfaces using cglib. Repeated calls to ProxyFactory.extend() (especially those that pass the optional constructor...