-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Add proper equals (and hashCode) methods to OAuth2AuthorizationRequest #16394
Comments
Thanks for the suggestion, @GrmpfNarf. Are you able to submit a PR that introduces this? |
Hi @jzheaux, |
Closes spring-projectsgh-16394 Signed-off-by: Maximilian Klose <[email protected]>
@GrmpfNarf, you can instead do:
I've just updated the contribution guides to reflect this. |
Hi @GrmpfNarf. I have taken a look at the PR and provided some feedback for you. Adding equals and hashCode methods make sense. However, I also wanted to mention on the issue by way of feedback:
I would always recommend providing a custom datatype for persistence. The OAuth2 domain objects in Spring Security are not annotated with Spring Data or JPA annotations and may not always be structured in such as way that they can be directly used as entities. We wouldn't intend to make changes just to accommodate using them directly with persistence. I feel it is best to provide your own data objects that adapt to your chosen persistence mechanism and data model. I would be impressed if you get it working as-is, but in any case I wouldn't recommend doing so. Hopefully that makes sense. Let me know if you have any questions. |
Hi,
Do I need to update from the Main Project first or something like that ? |
Hi, @GrmpfNarf, are you on the latest commit? This appears to be a bug that was resolved a couple of weeks ago due to an external dependency being unavailable. Please see e793a96 |
Expected Behavior
The class
org.springframework.security.oauth2.core.endpoint.OAuth2AuthorizationRequest
should have properequals
andhashCode
methods.Current Behavior
The class does not have an overriden
equals
orhashCode
method which makes proper comparison of two instances difficult.Context
I save this class into a database and read it back with JPA and Hibernate. This is done in some customization of the project:
spring-authorization-server
.However, Hibernate has the funcationality to detect changes in an entity and send an update to this entity to the database. For this function the
equals
method of custom types is called. Hibernate holds a copy of the entity in cache and compare this one with the one delivered to the application.Because of the missing proper
equals
method of the given class an update is triggered everytime the entity is read from the database.I understand that this may be a special case in comibnation with Hibernate but the lack of the method ensures that comparisons are maybe not accurate enough.
Workaround
To prevent this issue i wrap a custom datatype around the
OAuth2AuthorizationRequest
which adds the missingequals
functionality.The text was updated successfully, but these errors were encountered: