Have seen some similar questions:
Can you also please tell me the contexts in which they are used? Or the purpose of them?
|
Have seen some similar questions: Can you also please tell me the contexts in which they are used? Or the purpose of them? |
||||
|
JavaBeansA JavaBean is a class that follows the JavaBeans conventions as defined by Sun. Wikipedia has a pretty good summary of what JavaBeans are:
POJOA Plain Old Java Object or POJO is a term initially introduced to designate a simple lightweight Java object, not implementing any
Value ObjectA Value Object or VO is an object such as
Data Transfer ObjectData Transfer Object or DTO is a (anti) pattern introduced with EJB. Instead of performing many remote calls on EJBs, the idea was to encapsulate data in a value object that could be transfered over the network: a Data Transfer Object. Wikipedia has a decent definition of Data Transfer Object:
So, for many people, DTOs and VOs are the same thing (but Fowler uses VOs to mean something else as we saw). Most of time, they follow the JavaBeans conventions and are thus JavaBeans too. And all are POJOs. |
|||||||
|
|
Java Beans are not the same thing as EJBs. The JavaBeans specification in Java 1.0 was Sun's attempt to allow Java objects to be manipulated in an IDE that looked like VB. There were rules laid down for objects that qualified as "Java Beans":
EJBs came later. They combine distributed components and a transactional model, running in a container that manages threads, pooling, life cycle, and provides services. They are a far cry from Java Beans. DTOs came about in the Java context because people found out that the EJB 1.0 spec was too "chatty" with the database. Rather than make a roundtrip for every data element, people would package them into Java Beans in bulk and ship them around. POJOs were a reaction against EJBs. |
|||
|
|
DTO V/S VO DTO - Data transfer objects are just data containers which is used to transport data between layers and tiers .It mainly contains of attributes ,You can even use public attributes without getters and setters .Data transfer objects do not contain any bussiness logic. Analogy: Simple Registration form where you have attributes usename,password and email id . when you sumbit this form . In your servlet RegistrationServlet.java file you will get all the attributes from view layer to business layer where you pass the attributes to java beans and then to the DAO or the persistence layer . DTO's helps in transporting the attributes from view layer to bussiness layer and finally to the persistence layer . DTO was mainly used to get data transportd across the network efficiently , it may be even from JVM to another JVM . DTOs are often java.io.Serializable - inorder to transfer data across JVM VO - A Value Object [1,2] represents itself a fix set of data and is similar to a Java enum. A Value Object's identity is based on their state rather than on their object identity and is immutable. A real world example would be Color.RED, Color.BLUE, SEX.FEMALE etc. POJO V/S JavaBeans
|
|||
|
|
|
If you are newbie Just looking for the Definition for DATA TRANSFER OBJECT here is the definition for it(WiKIpedia)
Why it is being used ?
|
||||
|
|
|
when talk about getting data from repository you are using DTO when talk about transfer values between layers you are using VO when talk about object used without need for any specific container you are using POJO when talk about the JavaBeans conventions mentioned above you are using JavaBeans |
|||
|
|