Integrate DELETE REST APIs to JPA Repository
Let’s learn to integrate the DELETE REST API to remove an entity object from the database by using the JPA repository.
We'll cover the following...
Use repository in delete
method of the service
TodoService
Last, we’ll integrate the DELETE REST API to remove the object entry from the database.
Let’s modify the deleteById
method of the ...