Thursday 19 May 2022

HTTP Patch Vs PUT

https://www.baeldung.com/http-put-patch-difference-spring 

When a client needs to replace an existing Resource entirely, they can use PUT. When they're doing a partial update, they can use HTTP PATCH.

For instance, when updating a single field of the Resource, sending the complete Resource representation can be cumbersome and uses a lot of unnecessary bandwidth. In such cases, the semantics of PATCH make a lot more sense.

No comments:

Post a Comment