-
Notifications
You must be signed in to change notification settings - Fork 682
PersistentPropertyPathFactory should use contextual property information. #2293
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
Comments
This was referenced Feb 4, 2021
christophstrobl
added a commit
to spring-projects/spring-data-mongodb
that referenced
this issue
Jun 1, 2021
spring-projects/spring-data-commons#2293 changed how PersistentProperty paths get resolved and considers potentially registered converters for those, which made the path resolution fail in during the query mapping process. This commit makes sure to capture the according exception and continue with the given user input. Fixes: #3659
mp911de
pushed a commit
to spring-projects/spring-data-mongodb
that referenced
this issue
Jun 18, 2021
spring-projects/spring-data-commons#2293 changed how PersistentProperty paths get resolved and considers potentially registered converters for those, which made the path resolution fail in during the query mapping process. This commit makes sure to capture the according exception and continue with the given user input. Fixes: #3659 Original pull request: #3661.
mp911de
pushed a commit
to spring-projects/spring-data-mongodb
that referenced
this issue
Jun 18, 2021
spring-projects/spring-data-commons#2293 changed how PersistentProperty paths get resolved and considers potentially registered converters for those, which made the path resolution fail in during the query mapping process. This commit makes sure to capture the according exception and continue with the given user input. Fixes: #3659 Original pull request: #3661.
mp911de
pushed a commit
to spring-projects/spring-data-mongodb
that referenced
this issue
Jun 18, 2021
spring-projects/spring-data-commons#2293 changed how PersistentProperty paths get resolved and considers potentially registered converters for those, which made the path resolution fail in during the query mapping process. This commit makes sure to capture the according exception and continue with the given user input. Fixes: #3659 Original pull request: #3661.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In oder to preserve contextual information the
PersistentPropertyPathFactory
should obtainEntityInformation
for properties from theMappingContext
via theirPersistentProperty
representation instead of plainTypeInformation
as the former contains more information about the actual type and signatures.Related to: spring-projects/spring-data-mongodb#2803
The text was updated successfully, but these errors were encountered: