6 minutes
From Spring Boot To Jakarta EE 11: How Payara Starter Eases The Transition
If you’ve been living in the Spring ecosystem, you’re used to fast project setup. Spring Initializr gives you a […]
Modern web applications often adopt a layered architecture to separate concerns and improve maintainability. In this paradigm, your REST API acts as a communication layer, exposing resources to clients while interacting with the deeper layers of your application. Leveraging Java Records as Data Transfer Objects (DTOs) in this context helps to simplify the design of your REST resources, making them more expressive and easier to work with.
While it might seem tempting to directly expose your database entities (often modelled with Jakarta Persistence (JPA)) as REST resources, there are several compelling reasons to avoid this approach:
DTOs introduce a layer of separation between your database entities and the API layer. They are simple data containers tailored specifically to the data your API needs to send and receive.
Benefits of DTOs:
Java Records, first introduced in Java 14, are an excellent fit when defining DTOs. They offer:
Let’s imagine a Book entity in our database with additional relationships:
@Entity
public class Book {
@Id
private int id;
private String title;
private String author;
@ManyToOne
private Publisher publisher;
// ... other fields, relationships
}
Now, a simplified DTO using a Java Record for our REST layer would look like:
public record BookDTO(int id, String title, String authorName) {}
Notice how the BookDTO only includes the crucial information needed for most API interactions, hiding the relationship to the Publisher. Our REST endpoint can then consume and return a BookDTO as follows:
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public BookDTO saveBook(@Valid BookDTO bookDTO) {
return persistenceService.saveBook(bookDTO);
}
@GET
@Path("{title}")
public List<BookDTO> filterBooks(@NotEmpty @PathParam("title") String title) {
return queryService.filterBooks(title);
}
Within your REST resource classes, you’d likely use a mapping library (like MapStruct) to convert between your entities and their corresponding DTOs, managing the data flow between the REST layer and your service/persistence layers in an automated and transparent way.
By using DTOs and leveraging the conciseness of Java Records, you can create REST APIs that are more secure, maintainable and expressive. This separation of concerns gives you the flexibility to evolve your database schema and your API contract independently. Happy Coding!
Share:
6 minutes
If you’ve been living in the Spring ecosystem, you’re used to fast project setup. Spring Initializr gives you a […]
2 minutes
How outdated Java systems are draining budgets and throttling innovation across financial services? Let’s dig in in this blog […]
3 minutes
Exploring the Future of AI with the Jakarta EE Community At Payara, we’re passionate about pushing the boundaries of […]
Very well to understand.