About 6,990,000 results
Open links in new tab
  1. What is a Data Transfer Object (DTO)? - Stack Overflow

    Jun 26, 2009 · Data transfer object (DTO) describes “an object that carries data between processes” (Wikipedia) or an “object that is used to encapsulate data, and send it from one subsystem of an …

  2. Difference between DTO, VO, POJO, JavaBeans? - Stack Overflow

    Oct 23, 2009 · DTO (Data Transfer Object) Data transfer objects, or DTOs for short, are simple objects used to move data across processes. Its main applications involve data transmission through …

  3. Why are data transfer objects (DTOs) an anti-pattern?

    Sep 17, 2009 · 7 DTO becomes a necessity and not an ANTI-PATTERN when you have all your domain objects load associated objects EAGERly. If you don't make DTOs, you will have unnecessary …

  4. asp.net mvc - DTO = ViewModel? - Stack Overflow

    A DTO is an object used to transfer data between different layers or components of an application, typically between the backend and frontend. It focuses on data encapsulation and typically carries …

  5. What is a DTO and BO? What is the difference? - Stack Overflow

    Jan 9, 2011 · 27 I know DTO is a data transfer object and a BO is a business object. But, what does it actually mean? When should I choose one over the other? From, what I understand DTO is just used …

  6. What are the DAO, DTO and Service layers in Spring Framework?

    DTO: It is an Data Transfer object indeed, but is used to communicate between two isolated services and not between controller and service layers. Usually used for REST API controllers used from a UI …

  7. java - Difference between Entity and DTO - Stack Overflow

    What is the difference between a DTO and an Entity? In details these are my questions: What fields should the DTOs have? For example my entity classes are: @Entity public class MyFirstEntity imple...

  8. c# - Clean Architecture - DTO place - Stack Overflow

    Jun 6, 2022 · The DTO is essentially part of the service's interface definition and it doesn't make any sense without it. When you think about implementations of that service, in outer layers, those …

  9. List differences: DTO, VO, Entity, Domain, Model

    Apr 27, 2022 · Now I study about the Spring Boot that with JAVA platform. A problem I faced is how can you tell the difference between DTO, VO, Entity, Domain, and Model. Honestly it all look too similar …

  10. Plain Old CLR Object vs Data Transfer Object - Stack Overflow

    A DTO's only purpose is to transfer state, and should have no behavior. See Martin Fowler's explanation of a DTO for an example of the use of this pattern. Here's the difference: POCO describes an …