How-to articles, tricks, and solutions about JAVABEANS

Difference between DTO, VO, POJO, JavaBeans?

In Java, DTO stands for Data Transfer Object, and it is a simple object that is used to carry data between processes. DTOs are often used when transferring data over a network, or between layers of an application. They typically have private fields, and g

What is a JavaBean exactly?

In Java, a Java Bean is a class that follows a certain set of conventions.