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
In #3051 comparison of nested generics was improved.
This change causes projects which has certain complexities in the domain model, with some inheritance and self references to StackOverflowError in TypeDiscoverer.equals(...) during startup.
Thanks for reporting the regression. The issue comes from us following the self-recursive DBEntityWithExternalIds declaration, which points into itself. We need to fix the issue. As workaround, specifying a concrete type instead of going with raw types bypasses the problem.
We now resort to String-based comparison if a generic cannot be resolved. Previously, unresolved generics caused an infinite recursion.
Closesspring-projects#3084
In #3051 comparison of nested generics was improved.
This change causes projects which has certain complexities in the domain model, with some inheritance and self references to StackOverflowError in TypeDiscoverer.equals(...) during startup.
I've created a minimal example of this error in https://github.com/chris-real/data-stackoverflow
The text was updated successfully, but these errors were encountered: