gpt4 book ai didi

java - Dozer 从字符串到对象的映射

转载 作者:行者123 更新时间:2023-12-01 14:17:16 26 4
gpt4 key购买 nike

我有:_class A 包含属性:String userId、String a、String b。如何使用 Dozer 映射将 A 类 映射到 B 类(以及其他方式)_class B 具有属性:用户 user(object)、字符串 a、字符串 b。_'User'也是一个id为userId的类感谢您的帮助!

最佳答案

你可以这样做,假设你的 A 类和 B 类如下所示:

 Class A{
String userId;
String a;
String b;
}

Class B{
User user;
String a;
String b;
}

Class User{
String userId;
}

You have add below mapping in your mapping ".xml" file.

   <mapping> 
<class-a>com.techidiocy.example.A</class-a>
<class-b>com.techidiocy.example.B</class-b>
<field>
<a>userId</a>
<b>user.userId</b>
</field>
</mapping>

关于java - Dozer 从字符串到对象的映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18014776/

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