0
我需要將xml轉換爲jpa實體。我使用jaxb來獲取我的DTO並使用mapStruct將dto轉換爲實體。 但是,我需要從數據中提取一些數據,並將其設置爲實體上的列表。我的mapper看起來像這樣如何在使用MapStruct的方法之間共享實例
Particulier toEntity(TParticulier particulier);
List<AttributMeta> toEntity(List<TAttributMeta> attributMetas);
default String extractMetaData(TAttributGufIdWithMeta value) {
List<TAttributMeta> attributMetas=value.getAttributMeta();
???particulier.addAttributMetas(toEntity(attributMetas));??
return value.getValue().getGufid();
}
我不知道如何訪問我的實體Particulier內的extractMetaData方法。