Dozer:将单个字段映射到 Set
如何将单个字段映射到 Dozer 中的 Set
中?
我有一个这样的类:
class FooDTO {
private IdDto bar;
private IdDto baz;
}
class FooDomainObject {
private List<Id> ids;
}
我想将 bar
和 baz
映射到 ids
列表中,但我无法做到这一点这。
How do you map a single field into a Set
in Dozer?
I have a class like:
class FooDTO {
private IdDto bar;
private IdDto baz;
}
class FooDomainObject {
private List<Id> ids;
}
I'd like to map bar
and baz
into the ids
list, but I can't get it to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 Dozer 支持列表中找到了这个:
基本上,您使用以下语法:
I found this on the Dozer support list:
Basically, you use this syntax:
有没有办法做某事。像这样:
其中
standardID
是sourceObject
中的一个字段,sourceObjectSubObject
是List
。Is there a way to do sth. like this :
Where the
standardID
is a field in thesourceObject
,and the
sourceObjectSubObject
is aList<sourceObjectSubObject>
.