Category: Uncategorized
-
Magic in the Wild: How Java Giants like Spring, Hibernate, and Mockito use Dynamic Proxies
Welcome to the second installment of the series: Java Proxies Unmasked. In the previous post, we learned about the classic Proxy pattern. We built a Static Proxy and realized that while it works for a simple example, it doesn’t scale. Nobody wants to write a static proxy for every relevant class in their codebase. We…