Tag: proxy

Method Interceptor Java Challenge

Method Interceptor Java Challenge

This Java Challenge will teach you how to intercept a method with Java. When you need to intercept a specific method for some reason, you can use the same technique of this Java Challenge! It’s useful this knowledge on your toolbelt! You can...

Proxy Design Pattern with Java

To make code flexible and easy to maintain we must find a way to encapsulate and not repeat the code. What if we need to do a specific treatment every time we get an Exception? Would we repeat this code in the entire application? We could, but...