Can modelmapper map a class containing a Set of a type to another class containing a Set of another type?
First time asking on stackoverflow, please bear with me.
Can modelmapper map a class containing a list of a type to another class containing a list of another type?
First time asking on stackoverflow, please bear with me
Context: Blog web application backend.
Spring Boot version: 3.2.3
Modelmapper dependency version: 3.1.1
Build tool: Maven
Error: ModelMapper mapping errors:rnrn1) Converter org.modelmapper.internal.converter.MergingCollectionConverter@bd5c6b3 failed to convert org.hibernate.collection.spi.PersistentSet to java.util.Set.rnrn1 error
Springboot modelmapper List to List
I am trying to use ModelMapper to map a collection of Role Entity into a list of the names of the roles that the user have.