-
Introduced for the 2.3.3. release, this commit: f338abd97af163260fe46c26d128e0aa0f3d8021 added the default of true to the 'collectionsMergeEnabled' property in the `InheritingConfiguration` class. The…
-
Hi,
I have studied the inheritance example and was able to run it successfully.
However, I have a different case which does not seem to work.
I reused all the BaseDest.java, BaseDestA.java, B…
-
At ver 2.3.5.
It is failed to register Lambda Converter for specific type.
```java
Converter converter = context -> {
String[] address = context.getSource().split("@");
return n…
-
When mapping source parent object with a child object having a null reference to a destination object who's child object is set to a non null value, the result is a destination object who's child obje…
-
In a scenario where you're trying to map class `A` to `A` (for demo purposes):
I would expect `new ModelMapper().typeMap(A.class, A.class).validate();` to throw an exception because there is no set…
-
For Jacoco coverage ration purpose we need to get 1.0 but when ModelMapper performs the mapping only the setter methods are called on the destination class. I tried to use the modelMapper.validate exp…
-
https://github.com/RameshMF/springboot-microservices/tree/main/springboot-restful-webservices/src/main/java/net/javaguides/springboot/mapper
as I do see so much of usual work that is no less than u…
-
Hi,
pls. see code below:
```java
class A {
String fa1 = "fa1";
String fa2 = "fa2";
B b = new B();
}
class B {
String fb1 = "fb1";
String fb2 = "fb2";
}
class AMap exten…
-
Modelmapper is trying to map enum to its Int values in MatchingStrategies.STANDARD where as does not do so when MatchingStrategies.STRICT is used. I wish to use MatchingStrategies.STANDARD as it helps…
-
`
mapper.getConfiguration()
.setFieldMatchingEnabled(true)
.setFieldAccessLevel(PRIVATE);
`
This configuration does not work, it seems to me that there is an "el…