Overview Before talking about forward proxy and reverse proxy let’s talk about what is the meaning of proxy.Basically proxy means someone or something is acting on behalf of someone.In the technical realm, we are talking about one server is acting behalf of the other servers. In this blog, we will talk about web proxies. So …
Tag Archives: Proxy objects
Equals implementation for Lazy loaded objects in Hibernate
Most of you already know about the standard way to implement equals and hashCode for a class. As an example lets consider a User class public class User {private Long id;private String name;private String address;} If we consider Id as unique identifier for logical equality of users then the equals and hashCode method can be …
Continue reading “Equals implementation for Lazy loaded objects in Hibernate”