使用MapStructs表达式映射属性

时间:2019-02-26 11:29:02

标签: java mapstruct

class Product {
    Object obj;
}

class Object {
    Float amount;
}

class ObjectDto {
    Integer price;
}

class ProductMapper{

    @Mapping(expression = "java(this.convert(dto.getObject().getPrice(), decimals))", target = "object.amount")
    public abstract Product(ProductDto dto, decimals);

    protected Float convert(Integer price, decimals){
        price.floatValue();
    }
}

我正在尝试通过Mapstruct表达式将Integer映射为Float,并将参数和小数传递给函数,但是当生成的实现未正确到达参数“ decimals”时,我无法将其映射。

有可能吗?

实现代码如下:

class ProductMapperImpl {
    method(ObjectDto objectDto, Integer decimals){
        product.setObject(objectDtoToObject(dto.getObject()));
    }
    Object objectDtoToObject(ObjectDto objectDto){
        Object obj = new Object();
        obj.setAmount (this.convert(objectDto.getPrice());
    }
}

1 个答案:

答案 0 :(得分:2)

那么,这又怎么样(这就是我本来的意思):


@Mapper
public abstract class ProductMapper{

    @Mapping( target = "amount", source = "object.price" ); 
    public abstract Product toProduct(ProductDto dto, @Context Integer decimals);

    public Float createPrice(Integer price, @Context Integer decimals) {
       // do some Float stuff here
    }

}

顺便说一句:我不会使用Float作为金额,而是始终使用BigDecimal。