我有一个Employee
班级
class Employee {
String name;
Identity id;
List<Address> addressList;
}
我从resttemplate获取雇员对象的json格式字符串。当我尝试使用gson.fromJson()
将json格式字符串转换为对象时。我收到"Type information is unavailable, and the target object is not a primitive"
错误。
即使我选择了将成为转换列表的解决方案的令牌类型列表。