A proxy is an object that is created after applying advice to a target object. When you think of client objects the target object and the proxy object are the same.It is used to implement aspect contracts, created by AOP framwork. It will be a JDK dynamic proxy or CGLIB proxy in spring framework.
Read More →