Reference articles on history, science, culture and more
Encyclopedia

Data transfer object

Programming object that carries data

In the field of programming a data transfer object (DTO) is an object that carries data between processes. The motivation for its use is that communication between processes is usually done resorting to remote interfaces (e.g., web services), where each call is an expensive operation. Because the majority of the cost of each call is related to the round-trip time between the client and the server, one way of reducing the number of calls is to use an object (the DTO) that aggregates the data that would have been transferred by the several calls, but that is served by one call only.

The difference between data transfer objects and business objects or data access objects is that a DTO does not have any behavior except for storage, retrieval, serialization and deserialization of its own data (mutators, accessors, serializers and parsers). In other words, DTOs are simple objects that should not contain any business logic but may contain serialization and deserialization mechanisms for transferring data over the wire.

This pattern is often incorrectly used outside of remote interfaces. This has triggered a response from its author where he reiterates that the whole purpose of DTOs is to shift data in expensive remote calls.

In some languages, these can usually be represented as records (or structs).

01Terminology

A value object is not a DTO. The two terms have been conflated by Sun/Java community in the past.

02Example

The following is an example of a DTO, using a Java record.

import java.io.FileInputStream; import java.io.IOException; import java.util.Properties; import jakarta.validation.constraints.Email; import jakarta.validation.constraints.NotBlank; record UserResponseDTO( Long id, @NotBlank(message = "Name cannot be empty") String name, @Email(message = "Invalid email format") String email ) {} try (FileInputStream f = new FileInputStream("config.properties") { Properties prop = new Properties(); prop.load(f); UserResponseDTO user = new UserResponseDTO(1L, prop.getProperty("user.name"), prop.getProperty("user.email")); System.out.println(user.name()); } catch (IOException e) { System.err.println("Error loading properties file: " + e.getMessage()); }
Watch videos about Data transfer objectExplainers and documentaries on YouTube (opens in a new tab)

Sources and credits

This article is adapted from the Wikipedia article Data transfer object, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.

Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.