24

我想做类似的事情:

ArrayList<CustomObject> objects = new ArrayList<CustomObject>();
...
DozerBeanMapper MAPPER = new DozerBeanMapper();
...
ArrayList<NewObject> newObjects = MAPPER.map(objects, ...); 

假设:

<mapping>
  <class-a>com.me.CustomObject</class-a>
  <class-b>com.me.NewObject</class-b>   
    <field>  
      <a>id</a>  
      <b>id2</b>  
    </field>  
</mapping>

我试过 :

ArrayList<NewObject> holder = new ArrayList<NewObject>();
MAPPER.map(objects, holder);

但持有人对象是空的。我还尝试更改第二个参数,但没有任何运气......

4

8 回答 8

32

去引用:

“嵌套集合是自动处理的,但你说得对,顶级集合需要迭代。目前没有更优雅的方法来处理这个问题。”

有人想出了一种方法来做到这一点,而无需在您的代码库中使用循环结构,但我认为将其放入您的代码中更容易(并且更易读/可维护)。希望他们能尽快添加此功能。

于 2009-08-31T18:18:02.757 回答
9

我遇到了类似的问题,并决定使用通用实用程序方法来避免每次需要执行此类映射时都进行迭代。

public static <T, U> List<U> map(final Mapper mapper, final List<T> source, final Class<U> destType) {

    final List<U> dest = new ArrayList<>();

    for (T element : source) {
        dest.add(mapper.map(element, destType));
    }

    return dest;
}

用法将类似于:

    final List<CustomObject> accounts..... 
    final List<NewObject> actual = Util.map(mapper, accounts, NewObject.class);

可能这可以进一步简化。

于 2011-12-28T03:02:41.963 回答
5

正在发生的事情是你被类型擦除咬了。在运行时,java 只看到一个ArrayList.class. CustomObjectand的类型NewObject不存在,因此 Dozer 试图映射 a java.util.ArrayList,而不是你的CustomObjectto NewObject

什么应该起作用(完全未经测试):

List<CustomObject> ori = new ArrayList<CustomObject>();
List<NewObject> n = new ArrayList<NewObject>();
for (CustomObject co : ori) {
    n.add(MAPPER.map(co, CustomObject.class));
}
于 2009-08-31T17:58:13.887 回答
3

你可以这样做:

public <T,S> List<T> mapListObjectToListNewObject(List<S> objects, Class<T> newObjectClass) {
final List<T> newObjects = new ArrayList<T>();
for (S s : objects) {
    newObjects.add(mapper.map(s, newObjectClass));
}
return newObjects;

}

并使用它:

ArrayList<CustomObject> objects = ....
List<NewObject> newObjects = mapListObjectToListNewObject(objects,NewObject.class);
于 2014-04-16T18:19:31.553 回答
2

对于那个用例,我曾经写过一个小助手类:

import java.util.Collection;

/**
 * Helper class for wrapping top level collections in dozer mappings.
 * 
 * @author Michael Ebert
 * @param <E>
 */
public final class TopLevelCollectionWrapper<E> {

    private final Collection<E> collection;

    /**
     * Private constructor. Create new instances via {@link #of(Collection)}.
     * 
     * @see {@link #of(Collection)}
     * @param collection
     */
    private TopLevelCollectionWrapper(final Collection<E> collection) {
        this.collection = collection;
    }

    /**
     * @return the wrapped collection
     */
    public Collection<E> getCollection() {
        return collection;
    }

    /**
     * Create new instance of {@link TopLevelCollectionWrapper}.
     * 
     * @param <E>
     *            Generic type of {@link Collection} element.
     * @param collection
     *            {@link Collection}
     * @return {@link TopLevelCollectionWrapper}
     */
    public static <E> TopLevelCollectionWrapper<E> of(final Collection<E> collection) {
        return new TopLevelCollectionWrapper<E>(collection);
    }
}

然后,您将按以下方式调用推土机:

private Mapper mapper;

@SuppressWarnings("unchecked")
public Collection<MappedType> getMappedCollection(final Collection<SourceType> collection) {
    TopLevelCollectionWrapper<MappedType> wrapper = mapper.map(
            TopLevelCollectionWrapper.of(collection),
            TopLevelCollectionWrapper.class);

    return wrapper.getCollection();
}

mapper.map(...)唯一的缺点:由于 Dozers Mapper 接口不处理泛型类型,您会收到“未经检查”的警告。

于 2011-05-09T13:09:56.417 回答
2

并不是真正的改进,更像是可以通过Guava实现的语法糖( Apache Commons很可能会发生类似的事情):

final List<MyPojo> mapped = Lists.newArrayList(Iterables.transform(inputList, new Function<MyEntity, MyPojo>() {
    @Override public MyPojo apply(final MyEntity arg) {
        return mapper.map(arg, MyPojo.class);
    }
}));

这也可以变成通用功能 - 正如其他答案中所建议的那样。

于 2012-04-19T10:22:15.230 回答
2

您可以实现自己的映射器类,该类将扩展推土机映射器。示例:创建一个向推土机映射器添加附加方法的接口:

public interface Mapper extends org.dozer.Mapper {
    <T> List<T> mapAsList(Iterable<?> sources, Class<T> destinationClass);
}

下一步:通过实现上述接口编写自己的 Mapper 类。

将以下方法添加到您的实现类:

public class MyMapper implements Mapper {
    @Override
    public <T> List<T> mapAsList(Iterable<?> sources, Class<T> destinationClass) {
        //can add validation methods to check if the object is iterable
        ArrayList<T> targets = new ArrayList<T>();
        for (Object source : sources) {
            targets.add(map(source, destinationClass));
        }
        return targets;
    }
    //other overridden methods.
}

希望这可以帮助

于 2016-05-25T07:42:32.313 回答
2

我已经使用 Java 8 和 dozer 5.5 完成了它。您不需要任何 XML 文件进行映射。你可以用Java来做。

您不需要任何额外的列表映射,唯一需要的是

您需要将列表添加为映射中的字段

. 请参阅下面的示例 bean 配置。

弹簧配置类

@Configuration
public class Config {

@Bean
    public DozerBeanMapper dozerBeanMapper() throws Exception {
        DozerBeanMapper mapper = new DozerBeanMapper();
        mapper.addMapping( new BeanMappingBuilder() {
            @Override
            protected void configure() {
                mapping(Answer.class, AnswerDTO.class);
                mapping(QuestionAndAnswer.class, QuestionAndAnswerDTO.class).fields("answers", "answers");                  
            }
        });
        return mapper;
    }

}

//Answer 类和 AnswerDTO 类具有相同的属性

public class AnswerDTO {

    public AnswerDTO() {
        super();
    }

    protected int id;
    protected String value;

    //setters and getters
}

//QuestionAndAnswerDTO 类有一个 Answers 列表

public class QuestionAndAnswerDTO {

    protected String question;
    protected List<AnswerDTO> answers;

   //setters and getters
}

//让 QuestionAndAnswer 类具有与 QuestionAndAnswerDTO 相似的字段

//然后在你的代码中使用映射器,自动装配它

@Autowired
private DozerBeanMapper dozerBeanMapper;
// in your method


 QuestionAndAnswerDTO questionAndAnswerDTO =
    dozerBeanMapper.map(questionAndAnswer, QuestionAndAnswerDTO.class);

希望这将有助于有人遵循 Java 方法而不是 XML。

于 2017-09-18T20:57:11.753 回答