ModelMapper Not Mapping - PullRequest
       11

ModelMapper Not Mapping

0 голосов
/ 13 декабря 2018

Когда я пытаюсь сопоставить строку в источнике с целым числом в пункте назначения через Enum.Сбой ModelMapper.

Источник

public class Request {
    private String classification;
}

Назначение

public class DTO {
    private Integer classification;
}

Отображение между строкой и целым числом определено в ENUM

public enum Classification {

POWER(3, "Power"),
PERFORMANCE(4, "Performance"),
TASK(13, "Task");

private final Integer code;
private final String  name;

ProblemClassification(final int code, final String name) {
    this.code = code;
    this.name = name;
}

public Integer getCode() {
    return code;
}

public String getName() {
    return name;
}

public static Integer getCodeByName(String name) {
    Optional<Classification> classification = Arrays.asList(Classification.values()).stream()
            .filter(item -> item.getName().equalsIgnoreCase(name))
            .findFirst();
    return classification.isPresent() ? classification.get().getCode() : null;
}
}

1 Ответ

0 голосов
/ 13 декабря 2018

Вам нужно Converter там:

ModelMapper modelMapper = new ModelMapper();
Converter<String, Integer> classificationConverter =
                ctx -> ctx.getSource() == null ? null : Classification.getCodeByName(ctx.getSource());
modelMapper.typeMap(Request.class, DTO.class)
                .addMappings(mapper -> mapper.using(classificationConverter).map(Request::getClassification, DTO::setClassification));
...