This commit is contained in:
weiping 2018-01-11 12:23:56 +08:00
Родитель 47434f8490
Коммит 5721e1ca1a
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -94,8 +94,7 @@ public class MappingDocumentDbConverter
}
accessor.setProperty(prop, mappedList);
} else {
final Object converted = conversionService.convert(fieldValue, prop.getActualType());
accessor.setProperty(prop, converted);
accessor.setProperty(prop, sourceDocument.get(prop.getName()));
}
}
);