In this tutorial we will see how we can create our response model with dto Spring Boot.
The source code of this tutorial is here https://github.com/basarbk/spring-response-model
With Data transfer objects we can create our custom objects and map the values of our domain model object to it in anyway we want. Compared to projection, when using DTO, we don’t have to add custom methods to our repository.
#spring-boot #java #database #developer