Top "Dto" questions

DTO is an acronym for Data Transfer Object, a design pattern used in data transfer.

Difference between Entity and DTO

What is the difference between a DTO and an Entity? In details these are my questions: What fields should the …

java entity dto
DTO = ViewModel?

I'm using NHibernate to persist my domain objects. To keep things simple I'm using an ASP.NET MVC project as …

asp.net-mvc domain-driven-design viewmodel dto
MapStruct implementation is not working in Spring Boot Web Application

I am a newbie to Spring Boot and MapStruct Tool. Earlier, A Project(written by other team using these technologies) …

spring-boot entity dto mapstruct
What is the difference between an MVC Model object, a domain object and a DTO

What is the difference between a MVC Model object, a domain object and a DTO? My understanding is: MVC Model …

model-view-controller model architecture dto
Spring DTO validation in Service or Controller?

I'm building a straight forward AJAX / JSON web service with Spring. The common data flow is: some DTO from browser …

spring validation spring-mvc service dto
DTO naming conventions , modeling and inheritance

We are building a web app using AngularJS , C# , ASP.Net Web API and Fluent NHibernate. We have decided to …

c# nhibernate dto
Alternative to dozer for bean mapping?

I am trying to figure out an easy way to map DTOs to entities without the boiler-plate code. While I …

guice dto dozer dto-mapping
Converting Json into a DTO array

I have an interesting JSON parsing problem, at least to me since I am doing this for the first time. …

java json jackson dto toarray
Entity Framework and DTO

Im planning to use the Entities generated by the EF (POCO) in sending data to the client instead of creating …

c# dto
What is the difference between POJO (Plain Old Java Object) and DTO (Data Transfer Object)?

I cannot find difference between them. Does anyone know how to differentiate them?

java terminology pojo dto