According to the Sprind Data Rest Docs it supports media type application/patch+json. Perhaps this assumption is wrong, but I take this to mean Spring Data Rest supports JSON Patch (RFC 6902). How do you get it to work?
Here's what I've tried:
Added…
I have patching problem which is related to converting the String value the corresponding type. When I try to patch the "Locale" type (or primitives), it works. But it fails for Instant
Entity:
@JsonIgnore
@Field("locale")
private Locale…
We need to update a counter through our REST API and we're using JSON Patch for our PATCH calls, so it should be something like this:
{"op":"increment", "path":"/counter", "value": 1 }
The problem is JSON Patch doesn't support this type of…
I've developed a tool which creates JSON patch results in a .csv file specifying differences between two sets of JSON files.
I want the business side of my organisation to be able to easily interpret this data and wondered if there is a UI or…
The RFC 6902 defines a lot of things and clearly. Except two related things:
How do you patch a table that is joined to the resource?
And when the join has multiple rows?
Eg.
GET /news/123
[
{"title": "Hello", "contents": "World",…