-
Notifications
You must be signed in to change notification settings - Fork 682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeDiscoverer
uses single-level nesting for generics comparison
#3051
Comments
Hi Team, |
This looks like a Spring Data Commons issue as we're creating the entity for Another aspect is that we work on an Entity level. Component types are only retained for collections and map types, but not for custom types as a type of |
TypeDiscoverer
uses single-level nesting for generics comparison
The problem comes from |
We now compare nested generics wrapped into TypeInformation to consider type equality for deeply parametrized types. Previously, we resolved type parameters to Class so Foo<List<String>> was considered equal to Foo<List<Map>> as the type parameter of the first nesting level was erased. Closes #3051
We now compare nested generics wrapped into TypeInformation to consider type equality for deeply parametrized types. Previously, we resolved type parameters to Class so Foo<List<String>> was considered equal to Foo<List<Map>> as the type parameter of the first nesting level was erased. Closes #3051
DEMO repo: https://github.com/jinganix/spring-data-mongodb-issue
When running test in ConverterTest.java, it will throw error:
There is no error if we removed this line: https://github.com/jinganix/spring-data-mongodb-issue/blob/296bd2c3a801f54f35e794dec2a3af12229f6a54/src/test/java/com/example/demo/model/FooCollection.java#L13
please have a check
The text was updated successfully, but these errors were encountered: