About 68 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. java - O que é um DTO? - Stack Overflow em Português

    Sep 27, 2022 · Note que DTO não é algo do Java, e funciona igual em todas tecnologias, podendo até mesmo ser usado entre linguagens diferentes. O que pode ser específico, nem do Java, mas de um …

  3. DTO有哪些方面的用处? - 知乎

    DTO,即 Data Transfer Object,数据传输对象,其实就是一个简单的 POJO对象 (Plain Ordinary Java Object,简单Java对象),就是我们平常所见的属性,提供getter和setter的JavaBean。 有何作用( …

  4. VO,BO,PO,DO,DTO的区别 - 知乎

    Feb 5, 2024 · 3、DTO:Data Transfer Object (数据传输对象),顾名思义,dto的作⽤是传递数据。 但是我们按照业务流程处理得到的数据,并不是全部都要进⾏显⽰,或者并不能完全都按照当前形势进⾏ …

  5. DTOs: best practices - Stack Overflow

    A DTO is just that, Data Transfer Object - it's what gets passed down the wire. So I've got a website and services, only the services will have access to real domain/entity objects, and return DTO's.

  6. What is the point of a Data Transfer Object (DTO)?

    The DTO's provide an abstraction layer for your domain model. You can therefore change the model and not break the contract you have for your service clients. This is akin to a common practice in …

  7. 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 …

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

    Sep 3, 2017 · 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 …

  9. 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 …

  10. 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 …