繁体   English   中英

如何在 mapstruct 中使用来自不同类的另一个映射

[英]How can I use another mapping from different class in mapstruct

我想将模型对象映射到 dto 模型。 我已经有一个对象的映射器。 如何在另一个类中的另一个映射器中重用这个映射器?

我有以下作为模型

    @Getter
    @AllArgsConstructor
    @ToString
    public class History {

      @JsonProperty("identifier")
      private final Identifier identifier;

    @JsonProperty("submitTime")
    private final ZonedDateTime submitTime;

    @JsonProperty("method")
    private final String method;

    @JsonProperty("reason")
    private final String reason;

    @JsonProperty("dataList")
    private final List<Data> dataList;
   }

     @DynamoDBTable(tableName = "history")
     @Data
     @NoArgsConstructor
     public class HistoryDynamo {
        @DynamoDBRangeKey(attributeName = "submitTime")
        @DynamoDBTypeConverted(converter = ZonedDateTimeType.Converter.class)
        private ZonedDateTime submitTime;

        @DynamoDBAttribute(attributeName = "identifier")
        @NonNull
        private Identifier identifier;

        @DynamoDBAttribute(attributeName = "method")
        private String method;

         @DynamoDBAttribute(attributeName = "reason")
         private String reason;

         @DynamoDBAttribute(attributeName = "dataList")
         private List<Data> dataList;
     }

        @Data
        @DynamoDBDocument
        @NoArgsConstructor
        public class Identifier implements Serializable {
    
            @DynamoDBAttribute(attributeName = "number")
            private String number;
    
        @DynamoDBAttribute(attributeName = "cityCode")
        @NonNull
        private String cityCode;
    
        @DynamoDBAttribute(attributeName = "countryCode")
        @NonNull
        private String countryCode;
    
        @DynamoDBTypeConverted(converter = LocalDateType.Converter.class)
        private LocalDate mydate;
    }
    
         @Data
         @EqualsAndHashCode
         @NoArgsConstructor
         @RequiredArgsConstructor
         @JsonInclude(JsonInclude.Include.NON_NULL)
         public class Identifier implements Serializable {
    
        @NonNull
        @lombok.NonNull
        @NotNull
        private String number;
    
        @NonNull
        @lombok.NonNull
        @NotNull
        private City city;
    
        @NonNull
        @lombok.NonNull
        @NotNull
        private Country country;
    
        @JsonDeserialize(using = LocalDateDeserializer.class)
        @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'Z'")
        @DateTimeFormat(pattern = "yyyy-MM-dd'Z'")
        @NonNull
        @lombok.NonNull
        @NotNull
        private LocalDate mydate;
    }

这是我的映射

    @Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.WARN, injectionStrategy = InjectionStrategy.CONSTRUCTOR, nullValueMappingStrategy = NullValueMappingStrategy.RETURN_NULL)
    public interface IdentifierMapper {
    
        IdentifierMapper MAPPER = Mappers.getMapper(IdentifierMapper.class);
    
    
        @Mappings({@Mapping(source = "identifier.number", target = "number"),
                   @Mapping(source = "identifier.city.code", target = "cityCode"),
                   @Mapping(source = "identifier.country.code", target = "countryCode"),
                   @Mapping(source = "identifier.mydate", target = "mydate")})
        @Named("toIdentifierDynamo")
        myproject.entity.dynamo.Identifier toIdentifierDynamo(myproject.model.Identifier identifier);
    }
    
    @Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.WARN, injectionStrategy = InjectionStrategy.CONSTRUCTOR,
            nullValueMappingStrategy = NullValueMappingStrategy.RETURN_NULL, uses = {IdentifierMapper.class})
    public interface HistoryMapper {
    
        HistoryMapper MAPPER = Mappers.getMapper(HistoryMapper.class);
    
        @Mappings({@Mapping(source = "identifier", target = "identifier", qualifiedByName = "toIdentifierDynamo"),
                  @Mapping(source = "method", target = "method"),
                  @Mapping(source = "reason", target = "reason"),
                  @Mapping(source = "timestamp", target = "timestamp")})
        HistoryDynamo toHistoryDynamo(History history);
    }

我想将 History 映射到 HistoryDynamo 并重用 IdentifierMapper 来映射 HistoryDynamo 中的对象之一。 如何在 toHistoryDynamo 中使用 toIdentifierDynamo?

  • 首先,您不必在 Spring 中创建实例。 你可以只自动装配你的映射器。
  • 其次,如果每个字段具有相同的名称,则@Mapping为每个字段提供@Mapping注释。 Mapstruct 将为您完成。
  • 您的问题可以使用 MapStruct 映射器HistoryMapper uses参数来完成,该参数可以在@Mapper注释参数uses = IdentifierMapper.class 它将自动连接IdentifierMapperHistoryMapper 默认情况下,它将通过字段执行。 您也可以在参数中更改它: injectionStrategy = InjectionStrategy.CONSTRUCTOR并且可能就足够了,因为您具有相同的字段名称(标识符)并且 MapStruct 应该意识到应该使用IdentifierMapper

我可以用 mapstruct 映射一个从 ArrayList 延伸的 class<object> ?<div id="text_translate"><p> 尝试将从 Arraylist 扩展的 Object 映射到具有列表的 Class 时遇到问题,我的代码是:</p><ol><li> 首先是 Class,它从 ArrayList 延伸:</li></ol><pre> public class ClassOne extends ArrayList&lt;ClassTwo&gt; {}</pre><ol start="2"><li> 我需要映射到:</li></ol><pre> public class ClassTarget { private String companyId; private List&lt;ObjectTarget&gt; fieldListTarget; }</pre><p> 当我声明映射器时,错误是:</p><pre> java: Can't generate mapping method from iterable type to non-iterable type.</pre><p> 我认为错误在extends ArrayList&lt;SomeObject&gt;我不知道如何使用这种类型的 object 映射字段。</p></div></object>

[英]Can I mapping with mapstruct a class that extends from ArrayList<Object>?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM