Archive

Posts Tagged ‘AOP’

Understanding Dynamic Proxies

January 11th, 2009

Dynamic proxies have existed since J2SE 1.3 and have been mainly utilized as a mechanism for method interception so that additional behavior could be interposed between a class caller and its callee. Dynamic proxies exemplify AOP (Aspect Oriented Programming) which bundled within Spring Framework API, it provides alternative for implementing common design patterns like Façade, Bridge, Decorator, Proxy.

Read more…

Java , , ,