I am using ModelMApper to map objects from DTO to Impl - when deserializing the object. This is done in combination with JAxRS. When user makes a POST/PUT request I dont want the "id" to ever be mapped.
I need to skip the "id" field for all the mappings. I dont want to do this one by one since there aren't necessarily explicit maps for all classes. How could I configure the mapper to skip all "id" fields from all DTOs to Impls mappings.
Thank you