Modelmapper不执行转换器转换方法

时间:2017-07-18 11:12:40

标签: spring modelmapper

我有一个spring应用程序,它使用modelmapper在实体和DTO对象之间进行转换。我在DTO中有一个String,表示实体中的ZonedDateTime对象。我在SpringAppConfiguration中编写了以下代码片段

    @Bean
public ModelMapper contactModelMapper() {

    Converter<String, ZonedDateTime> toZonedDateTimeString = new AbstractConverter<String, ZonedDateTime>() {
        @Override
        public ZonedDateTime convert(String source) {
            DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
            LocalDateTime datel = LocalDateTime.parse(source, formatter);
            ZonedDateTime result = datel.atZone(ZoneId.systemDefault());
            return result;
        }
    };
    Converter<ZonedDateTime, String> toStringZonedDateTime = new AbstractConverter<ZonedDateTime, String>() {
        @Override
        public String convert(ZonedDateTime source) {
            String result = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").format(source);
            return result;
        }
    };

    PropertyMap<Contact, ContactDTO> contactDTOmap = new PropertyMap<Contact, ContactDTO>() {
        @Override
        protected void configure() {
            map().setTenantId(source.getTenant().getTenantId());
            //if (source.getCreatedDateTime() != null) map().setCreatedDateTime(source.getCreatedDateTime());
            //when(Conditions.isNotNull()).map(source.getCreatedDateTime(), map().getCreatedDateTime());
        }
    };

    /* this is for userDTO to BO.. */
    PropertyMap<ContactDTO, Contact> contactMap = new PropertyMap<ContactDTO, Contact>() {
        @Override
        protected void configure() {
            map().getTenant().setTenantId(source.getTenantId());
        }
    };
    ModelMapper contactModelMapper = new ModelMapper();
    contactModelMapper.addMappings(contactDTOmap);
    contactModelMapper.addMappings(contactMap);
    contactModelMapper.addConverter(toStringZonedDateTime);
    contactModelMapper.addConverter(toZonedDateTimeString);
    return contactModelMapper;
}

如您所见,有2个转换器。从DTO字符串更改为实体中的ZonedDateTime对象的那个根本不会被执行。反之亦然转换正在执行。

我会感谢任何帮助,任何建议。

由于

1 个答案:

答案 0 :(得分:0)

我经过大量在线阅读和实验后解决了这个错误。似乎addConverter的顺序调用很重要。在转换器实体到dto转换之后,我已经将转换器添加到实体转换中。一旦订单正确,代码就开始工作了。发布这个以便它可以帮助某人作为modelmapper的文档非常不稳定..