Relationship among Po, Vo, Bo, DTO, pojo, and Dao

Source: Internet
Author: User

A large number of professional acronyms in J2EE development are confusing, especially when discussing issues with some experts, they were dizzy by the technical terms in three minutes. Po VO Bo DTO pojo Dao, A lot of things are coming (friends who have heard of Lao Luo's criticism of this phenomenon will smile ).

First of all, I declare that I am not a master. The following summary is my own experience. For more information, see.

Po: persistant Object Persistent Object
A po is a record in the database. The advantage is that a record can be processed as an object, which can be easily converted to other objects.

 

Bo: Business Object
The main function is to encapsulate the business logic as an object. This object can include one or more other objects. For example, a resume includes educational experience, work experience, social relationship, and so on. We can correspond an educational experience to a po, a work experience to a po, and a social relationship to a po. Create a bo object to process the resume. Each Bo contains the Po. In this way, we can process the business logic for Bo.

 

VO: value object Value Object viewobject presentation layer object
It mainly corresponds to the Data Objects displayed on the interface. For a Web page, or a SWT or swing interface, use a Vo object to correspond to the value of the entire interface.

 

Dto: data transfer object data transmission objects are mainly used for remote calls and other places where a large number of transmission objects are required. For example, if a table has 100 fields, the corresponding Po has 100 attributes. However, as long as 10 fields are displayed on the interface, the client uses Web service to obtain data, and there is no need to pass the entire Po object to the client, in this case, we can use DTO with only these 10 attributes to pass the results to the client, so that the server table structure will not be exposed. after the client is reached, if this object is used for display on the corresponding interface, then its identity will be changed to VO

 

Pojo: plain ordinary Java object simple Ava object I personally think pojo is the most variable object. It is an intermediate object and the most common object to deal.
After a pojo is persisted, the PO directly uses it for transmission. During the transfer process, DTO is directly used to correspond to the presentation layer, that is, vo.

 

Dao: the data access object is the most familiar to everyone. It is the most different from the previous o files, and there is basically no possibility or need to convert each other. It is mainly used to encapsulate access to the database. With pojo, pojo can be persistently converted into Po, and PO can be assembled into vo and DTO.
To sum up, I think what is an object? O depends on the specific environment. In different layers and applications, the object identities are different, and the conversion of object identities is natural. Just like you are a husband to your wife and a child to your parents. The original intention of designing these concepts is not to expose people, but to better understand and process various logics, so that everyone can better deal with problems in an object-oriented way.

Relationship among Po, Vo, Bo, DTO, pojo, and Dao

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.