alialdev / projects

Projects
0 stars 1 forks source link

Use DTOs instead of dealing with entities directly #1

Closed dvt32 closed 1 month ago

dvt32 commented 2 months ago

Instead of modifying & returning the entities in the REST controllers, use DTOs (MovieDto, TvShowDto, etc).

More info here: https://www.baeldung.com/java-entity-vs-dto

dvt32 commented 2 months ago

You may also use MapStruct for mapping entities to DTOs and vice-versa. More info here: https://www.baeldung.com/mapstruct

ali-al-fntext commented 2 months ago

I have created DTO's and implemented MapStruct