Top "Data-transfer-objects" questions

What is Data Transfer Object?

What is a Data Transfer Object? In MVC are the model classes DTO, and if not what are the differences …

model-view-controller architecture dto data-transfer data-transfer-objects
Java data transfer object naming convention?

Given this scenario where you have "transfer objects" (POJO's with just getters/setters) which are passed by a client library …

java naming-conventions data-transfer-objects
Why are data transfer objects (DTOs) an anti-pattern?

I've recently overheard people saying that data transfer objects (DTOs) are an anti-pattern. Why? What are the alternatives?

java ejb dto anti-patterns data-transfer-objects
libusb bulk transfer

I am trying to implement user space usb driver using libusb1.0.9. I have lpc2148 blueboard(ARM7) with me..This board …

bulk libusb data-transfer-objects
Difference between Transfer objects and Domain objects

Could you please explain the difference between Transfer objects and Domain objects in simple terms ? And if u could give …

java architecture data-transfer-objects domain-object
DTO or Domain Model Object in the View Layer?

I know this is probably an age-old question, but what is the better practice? Using a domain model object throughout …

model dto data-transfer-objects
what is a good pattern for converting between hibernate entities and data transfer objects?

I have had similar questions and concerns as to how to convert between Hibernate entities and data transfer objects to …

java hibernate design-patterns entity data-transfer-objects
What is a DTO and BO? What is the difference?

I know DTO is a data transfer object and a BO is a business object. But, what does it actually …

business-objects data-transfer-objects
Should i use builder pattern in DTO?

This might be a pretty subjetive question, but i would to know some more opinions. I've built a Rest API …

java design-patterns dto data-transfer-objects builder-pattern