ModelMapper skip a field

后端 未结 3 1340
旧巷少年郎
旧巷少年郎 2020-12-30 06:54

I would like to map between UserDTO and User, but excluding one field, say city. How can I do that, cause I though that this approach

3条回答
  •  失恋的感觉
    2020-12-30 07:18

    Because of the generic parameters, we couldn't use the lambda expression.

    ModelMapper modelMapper = new ModelMapper();
    modelMapper.addMappings(new PropertyMap() {
                    @Override
                    protected void configure() {
                        skip(destination.getBlessedField());
                    }
                });
    

提交回复
热议问题