Skip to content

5. Create StudentRepository Interface

Ramesh Fadatare edited this page Jul 25, 2022 · 1 revision

Create StudentRepository

package net.javaguides.sms.repository;

import net.javaguides.sms.entity.Student;
import org.springframework.data.jpa.repository.JpaRepository;

public interface StudentRepository extends JpaRepository<Student, Long> {
}

Explain JpaRepository and it's implementation

Clone this wiki locally