Implement REST APIs for CRUD Operations - Part 2
Let’s learn how to design and implement REST APIs for the CRUD operations update and delete.
We'll cover the following...
Now, we’ll modify the body of the update
and delete
methods of the TodoController
class and implement the logic in the TodoService
for CRUD operations on the Todo
object.
Update Todo
Let’s look at Todo
REST API PUT flow in the diagram below:
Like the save
...