You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a DTO property is considered an association, then DtoInstantiatingConverter does not copy these properties using property population.
Typically, associations are discovered from annotations on the entity-side so it is uncommon to identify a DTO property as association unless associations derive from the target type such as AggregateReference in Spring Data JDBC.
We now populate DTO properties whose are identified as associations. While uncommon, as typically entities declare assocations using entities, associations can be identified as types and so these are now considered when populating properties.
Closes#3104
We now populate DTO properties whose are identified as associations. While uncommon, as typically entities declare assocations using entities, associations can be identified as types and so these are now considered when populating properties.
Closes#3104
When a DTO property is considered an association, then
DtoInstantiatingConverter
does not copy these properties using property population.Typically, associations are discovered from annotations on the entity-side so it is uncommon to identify a DTO property as association unless associations derive from the target type such as
AggregateReference
in Spring Data JDBC.See also spring-projects/spring-data-relational#1759.
The text was updated successfully, but these errors were encountered: