I am working on RCP application, I amI'm new to this application.
Spring beans are used to write business logic to save/fetch entities.
But, instead of sending entities directly to client we are converting to DTOswe are converting to DTOs and populating client.
While saving, we again are converting DTO to entity and saving.
What's the benefit of these conversions?
Can someone explain?