MapStruct:如何从 "java.lang.Object to "java.lang.String 映射 属性”

MapStruct: How to map property from "java.lang.Object to "java.lang.String"

MapStrut 新手;对象到字符串错误:

[ERROR] /util/LicenseMapper.java:[11,23] Can't map property "java.lang.Object license.customFields[].value" to "java.lang.String license.customFields[].value". Consider to declare/implement a mapping method: "java.lang.String map(java.lang.Object value)".

代码:

@Mapper
public interface LicenseMapper {
    List<License> jsonToDao(List<com.integrator.vo.license.License> source);
}

vo.license 包含具有 属性 和

的自定义字段列表
@SerializedName("Value")
@Expose
private Object value;

Json 将一个字段作为对象输入,因为它可能是布尔值或字符串或任何东西,所以我已将其映射到对象中。而在 dao 层中,String 中具有相同的字段。 (在自定义映射器中,我只是 String.valueof 但不确定如何使用 Mapstrut 实现它)

谁能告诉我 LicenseMapper 中将对象转换为字符串需要哪些设置?

许可证结构 - 源和目标:

.
.
private String notes;
private Boolean isIncomplete;
private List<CustomField> customFields = null;
private List<Allocation> allocations = null;

源中的自定义字段结构(删除了 gson 注释):

.
.
private String name;
private Object dataType;
private Object value;

目标中的自定义字段结构

private String name;
private String datatype;
private String value;

你可以尝试在表达式中使用注解@Mapping

@Mapping(expression = "java( String.valueOf(source.getValue()) )", target = "value")
List<License> jsonToDao(List<com.integrator.vo.license.License> source);

更新

@Mapper
public interface LicenseMapper {
LicenseMapper MAPPING = Mappers.getMapper(LicenseMapper.class);

List<License> entityListToDaoList(List<com.integrator.vo.license.License> source);

License entityToDao(com.integrator.vo.license.License source);

List<CustomField> customFieldListToCustomFieldList(List<*your custom field path*CustomField> source);

@Mapping(expression = "java( String.valueOf(source.getValue()) )", target = "value")
CustomField customFieldToCustomField(*your custom field path*CustomField source);
}

在您的代码中

import static ***.LicenseMapper.MAPPING;

***
List<License> myList = MAPPING.jsonToDao(mySource); 

你可以做到:

@Mapping(target = "yourTarget", source = "yourClass.custField.value")

enter image description here