Top "Modelmapper" questions

An intelligent object mapping framework that automatically maps objects to each other.

Better way to map Kotlin data objects to data objects

I want to convert/map some "data" class objects to similar "data" class objects. For example, classes for web form …

java kotlin modelmapper
How to customize ModelMapper

I want to use ModelMapper to convert entity to DTO and back. Mostly it works, but how do I customize …

java rest modelmapper
ModelMapper, mapping list of Entites to List of DTO objects

I am writing simple blog web application using Spring MVC framework. I am willing to add DTO layer to my …

java modelmapper
Does ModelMapper library support collections like ArrayList or HashSet?

This question is not relating with AutoMapper. My question is about ModelMapper in java, however I cannot create new tag …

java modelmapper
How to map a DTO to an existing JPA entity?

I'm trying to map a Java DTO object to an existing JPA entity object without having to do something like …

java spring hibernate modelmapper
ModelMapper skip a field

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

modelmapper
How to use modelMapper to convert nested classes

I have a simple class that I want to map to a DTO class using modelMapper. class Source { private String …

java modelmapper
ModelMapper: matches multiple source property hierarchies

I cannot resolve modelMapper error. Do you have any ideas where is the issue? NB: In view java.sql.Time …

java modelmapper
How to use Explicit Map with Java 8 and ModelMapper?

I learn how to use ModelMapper by official documentation http://modelmapper.org/getting-started/ There is code sample for explicit mapping …

java java-8 modelmapper
ModelMapper converter - not working

I'm using ModelMapper in my rest apps. I have to convert List to List. This is my code: Converter<…

java spring modelmapper