gpt4 book ai didi

java - Orika 通用集合自定义映射

转载 作者:行者123 更新时间:2023-12-01 13:51:00 26 4
gpt4 key购买 nike

Orika 支持泛型类型,但我很难让它与泛型集合一起使用。由于 Orika 不支持不同的收集策略(累积、非累积、孤立删除),我需要编写一个自定义映射器来处理我的需求。

问题是 Orika 没有应用这个映射器,而是尝试使用普通的集合映射逻辑。

Type<List<Document>> DOCUMENT_LIST = new TypeBuilder<List<Document>>() {}.build();
Type<List<DocumentRepresentation>> DOCUMENT_REP_LIST = new TypeBuilder<List<DocumentRepresentation>>() {}.build();

mapperFactory.classMap(DOCUMENT_LIST, DOCUMENT_REP_LIST)
.mapNulls(true)
.mapNullsInReverse(true)
.customize(new NonCumulativeListMapperDocumentToDocumentRepresentation())
.register();

public class NonCumulativeListMapperDocumentToDocumentRepresentation
extends CustomMapper<List<Document>, List<DocumentRepresentation>> {
//mapping logic
}

我还尝试在父映射中显式设置类型列表

.fieldMap("documents", "documents")
.aElementType(Document.class)
.bElementType(DocumentRepresentation.class)
.add()

但这也没有被采纳。

关于我缺少什么的任何提示吗?

最佳答案

这可以通过注册您的自定义映射器来完成:

mapperFactory.registerMapper(new NonCumulativeListMapperDocumentToDocumentRepresentation());

稍后 Orika 必须映射 DOCUMENT_LIST DOCUMENT_REP_LIST 时将使用它。不需要最后的fieldMap配置。

有关 Orika 中合并集合的更多信息,请参阅此 simple test (CustomMergerTest) .

关于java - Orika 通用集合自定义映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19953629/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com