web-dev-qa-db-ja.com

カスタムメソッドマッパーをMapstructにマップする

私は将来のプロジェクトでMapstructを使用するためのPOCを作成しています。

ここで、カスタムメソッドを特別なターゲットにマップする方法について質問があります。

たとえば、次のインターフェイスマッパーがあります。

@Mapper
public interface ItemMapper {

    static ItemMapper INSTANCE = Mappers.getMapper(ItemMapper.class);

    @Mappings({ @Mapping(source = "number", target = "itemnumber"),
            @Mapping(source = "description", target = "description"),
            @Mapping(source = "itemClass.name", target = "ic"), @Mapping(source = "optionPart", target = "option"),
            @Mapping(source = "plannerCode.code", target = "plannercode"),
            @Mapping(source = "plannerCode.name", target = "planner"),
            @Mapping(source = "vendor.buyerCode.name", target = "buyer"),
            @Mapping(source = "vendor.buyerCode.code", target = "buyerCode"),
            @Mapping(source = "vendor.number", target = "vendor"),
            @Mapping(source = "vendor.name", target = "vendorName"), @Mapping(source = "pcsItem", target = "pcs"),
            @Mapping(source = "specialColourVariant", target = "specialColors"),
            @Mapping(source = "qtyBufferGreen", target = "greenLine"),
            @Mapping(source = "qtyBufferRed", target = "redine"), @Mapping(source = "leadtime", target = "leadTime"),
            @Mapping(source = "qtyStock", target = "stockAC"),
            @Mapping(source = "qtyStockSupplier", target = "stockSupplier"),
            @Mapping(source = "qtyPurchaseOrder", target = "qtyPo"),
            @Mapping(source = "qtyShopOrder", target = "qtySo"),
            @Mapping(source = "qtyFirmPlannedOrder", target = "qtyFpo"),
            @Mapping(source = "qtyForecast", target = "qtyForecast"),
            @Mapping(source = "standardCost", target = "stdCost"),
            @Mapping(source = "itemCategory.name", target = "category") })
    ItemViewModel itemToDto(Item item);

    default String locationToLocationDto(Item item) {
        return item.getItemsOnDetailedLocations().iterator().next().getLocation().getLocation();
    }

    default double locationToBinType(Item item) {
        return item.getItemsOnDetailedLocations().iterator().next().getBinType();
    }

    default double itemToLotsize(Item item) {
        double lotSize = 0;
        if (item.getLotsize() != null) {
            lotSize = item.getLotsize();
        } else if (item.getItemsOnDetailedLocations() != null && !item.getItemsOnDetailedLocations().isEmpty()) {
            ItemsOnDetailedLocation location = item.getItemsOnDetailedLocations().iterator().next();
            lotSize = location.getLotSize();
        } else {
            lotSize = 0.0;
        }
        return lotSize;
    }

    default double stockRails(Item item) {
        double value = 0;
        for (ItemsOnDetailedLocation detailedLocation : item.getItemsOnDetailedLocations()) {

            if (detailedLocation.getId().getSource().equals("Rails")) {

                long lotSize2 = detailedLocation.getLotSize();
                long binInStock = detailedLocation.getBinInStock();

                if (binInStock != 0) {

                    value += lotSize2 * (binInStock - 0.5);
                }
            }

        }

        return value;
    }

}

コードでは、マッピングと、他のマッピングを含むいくつかのデフォルトメソッドを確認できます。これらのメソッドをMapstructマッピングで使用して、mapstructがこれらのメソッドを使用してフィールドに値を入力する方法を教えてください。

11
JimmyD

同じタイプを返すデフォルトのメソッドが複数あるので。 修飾子​​に基づくマッピング方法の選択 を使用する必要があります。

つまり、マッパーを次の形式で記述する必要があります。

@Mapper
public interface ItemMapper {

    // Omitting other mappings for clarity
    @Mapping(source = "item", target = "locationDto", qualifiedByName = "locationDto")
    @Mapping(source = "item", target = "binType", qualifiedByName = "binType")
    @Mapping(source = "item", target = "lotSize", qualifiedByName = "lotSize")
    @Mapping(source = "item", target = "stockRails", qualifiedByName = "stockRails")
    ItemViewModel itemToDto(Item item);

    @Named("locationDto")
    default String locationToLocationDto(Item item) {
        //Omitting implementation
    }

    @Named("binType")
    default double locationToBinType(Item item) {
        //Omitting implementation
    }

    @Named("lotSize")
    default double itemToLotsize(Item item) {
        //Omitting implementation
    }

    @Named("stockRails")
    default double stockRails(Item item) {
        //Omitting implementation
    }
}

いくつかの重要な注意事項:

  • MapStructパッケージの@Namedを使用する必要があります
  • sourceでは、メソッドのパラメーターの名前を指定することもできます
  • qualifiedByNameには、@Namedに書き込んだ値を指定する必要があります

このような複雑なものには式を使用しないよう強くお勧めします。それを正しくすることははるかに困難であり、維持することはより困難です

8
Filip

Mapstructも同様の構造を使用できます。

@Mapping(target = "name", expression = "Java(user.getName() != null " +
        " ? user.getName() : "DefaultName")")

は、Java

 item.getItemsOnDetailedLocations()
.iterator().next().getLocation().getLocation();

メソッドが大きい場合は、別のサービスに渡してこの方法で呼び出すことをお勧めします。

1
Redbore

あなたは単に次のようにそれらを使うことができます

@Mapping( target="/*Enter targetFieldName*/", expression="Java( /default method which calculates target field/" )
0
Naveen