-
Notifications
You must be signed in to change notification settings - Fork 560
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
PUT behaving like PATCH for nested collections [DATAREST-1012] #1374
Comments
Stefan Reichert commented Hey guys, since we face the same issue I'd really appreciate an answer to both questions mentioned above :). Thanks in advance, best regards, |
Stefan Reichert commented forgot to say: I'd provide a patch in case the behaviour does not reflect the intended PUT / PATCH semantics for inline collections |
Stefan Reichert commented please see pull request for DomainObjectReader fix for merging polymorphic persistent nested collections on PUT: #262 |
Joseph Valerio commented Is there any progress on this issue? Note: relates to DATAREST-1015 |
Oliver Drotbohm commented In comparison to what has been proposed a solution in the pull request, wouldn't it be easier to identify the case where a collection item is going to be replaced, and if the types don't match, just completely replace the old one with the new one? We also have to think about inheritance hierarchies and the fact that some of the backing entity's properties might be hidden from output (using |
Joseph Valerio commented To your point about inheritance hierarchies, couldn't SDR provide an annotation to optionally skip the merging, to allow developers the control we need? In our case this complex field is mapped to a jsonb property (a Map) on the backend. So there is no inheritance, just merging causing issues. |
Stefan Reichert commented Regarding identification of 'matches' when merging nested elements in a collection, what would be the matching rule? Since nested elements usually do not contain their id it is difficult to do it in a generic fashion, right? One could distinguish between List (which would work using the index) and Set (using the approach proposed in the pull request) |
Nick Ryan commented Hello, If understand correctly the comments on this ticket are relating to my original 2nd question: i.e. how to behave in the case of doing a merge of a collection of polymorphic items.
However with respect to my original 1st question: I would expect:
Why is the behaviour of merging being discussed with relation to PUT? I would have thought that merging would come into play only for PATCH and we should be discussing the behaviour of a method called I am still missing the basic reason of why a merge is being done in the case of PUT? If a merge was not done in the case of PUT, then these two items would be non-issues or possibly updated to just refer to the PATCH case only: My suggestion would be to make the following changes:
I can probably work on the first item and submit something, the second one I have no idea where to look but could investigate. But I'd prefer to do this only after having my thoughts about expected behaviour confirmed. |
Nick Ryan commented Hello, not sure if "Provide Feedback for Developer" is the right thing to do.. Just wanted to point out that the ticket was updated with my comments, but didn't see that the status changed from Waiting For Feedback. Hoping you can answer my queries and I might be able to assist with a patch |
Stefan Reichert commented This issue came up again and I re-submitted a pull request. The PR does not change the current behaviour for homogeneous collections but sticks to the "merge on PUT" strategy. It enhances the functionality to support heterogenous (polymorphic) inline collections as well. I hope the comments and test are sufficient. Please let me know whether this is feasible or if you prefer to simply recreate all inline objects on PUT. I personally don't favour that "replace on PUT" approach for the following reasons:
Anyway, if you prefer the "replace on PUT" approach, please let me know. I'll then take care of the PR. This one really bothers us since it has negative impact on our domain design |
Stefan Reichert commented Hey Oliver Drotbohm, I am aware of this issue's "maturity" :). Nevertheless any comment (positive or negative) is highly appreciated. Thanks in advance and best from Hamburg |
Oliver Drotbohm commented I might be misunderstanding the suggested change but it feels rather arbitrary to me to group the objects by type and then effectively merge them based on that. The merging solely happens to make sure we keep values of fields around that are not exposed in the JSON. I'd still argue that the payload data used in the request expresses that the first item is supposed to be what's in the payload, not expecting additional data transferred, that some object at a different index in the list that has the same type by accident. Imagine your |
Stefan Reichert commented Hey Oliver Drotbohm, thanks for your comment. I totally agree that the "matching by type" approach has exactly that weakness. To answer your question: No I wouldn't. Nevertheless the current implementation - from my perspective - already does exactly what you described as rather arbitrary: It creates iterators from both the incoming payload's collection and the persistent object's collection. Since JPA uses The patch sticks to the current version's approach. Did I understand the current handling right? What would be a suitable alternative for you (I'll provide another patch :))? |
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed. |
Also would like to hear your opinion about |
This one has come up again today in the context of #2130. That one targets the change of entity type handling for PUT requests. As the original reporter mentioned this ticket here and pointed to #368, I took another look at the PR. I've come to the conclusion that the assumption expressed in the test case are invalid, as it expects an instance of a concrete type to be automagically reused to establish an instance of the same type at a different index. That might work if there's a single instance per concrete type in the original collection but not a deterministic approach. I still wanted to ping this ticket here, as the fix for #2130 might just fix the original reporter's problem. I'm inclined to decline #368 as is. |
Nick Ryan opened DATAREST-1012 and commented
With respect to the documentation at:
5.3. The item resource
it states for "PUT":
Replaces the state of the target resource with the supplied request body.
When performing a PUT on a resource which contains a nested collection it invokes the method
mergeForPut(...)
inDomainObjectReader.java
.Based on the documentation I would expect:
PUT: the nested collection to be replaced rather than merged
PATCH: the nested collection to be merged
QUESTION 1: Is the documentation wrong, or the code wrong or am I misunderstanding the expected behaviour?
Secondary to this is the way this issue was encountered:
If we have a resource which contains a nested collection of polymorphic items:
e.g.
parent
has a collection ofchild
where each abstract child could be a concreteboy
orgirl
when POSTING to modify:
parent.children[0] = boy
to:
parent.children[0] = girl
the code ends up calling
mergeForPut(...)
and trying to modify aboy
instance into agirl
instance and I get a message like:Target bean of type
boy
is not of type of the persistent entity (girl
)!QUESTION 2: What is the expected behaviour in this case or is this case not supported e.g. for a nested collection of abstract types it needs to be cleared before items of different concrete types are replaced?
Affects: 2.6 GA (Ingalls)
8 votes, 12 watchers
The text was updated successfully, but these errors were encountered: