@Configuration @RequiredArgsConstructor public class CustomModelMapper { private final ModelMapper modelMapper; @Bean public ModelMapper standardMapper(){ modelMapper.getConfiguration() .setMatchingStrategy(MatchingStrategies.STANDARD); modelMapper.createTypeMap(Post.class, PostResponseDto.class) .addMapping(Post :: getId, PostResponseDto :: setPostId) .addMapping(Post :: getTitle, PostResponseD..