...

/

Creating a Repository Interface

Creating a Repository Interface

We'll cover the following...

Defining an interface

Spring’s CrudRepository interface provides all the methods like findById() and save() to fetch from the database or to update the database. All ...