Currently, modelMapper.map to convert from DTO to entity and the other way around takes approximately 3 s.
Is that normal? Currently, this entity has 12 variables that are using ManyToOne relation.
Previously, it takes 5 s for a single map.
But after I use modelMapper.getConfiguration().setMatchingStrategy(MatchingStrategies.STRICT); now only takes 3 s.