- Data Layer Repositories covered - Autowiring Repositories (Data Layer) to Service Layer Covered - Mapping Entities To Tables and Column attributes covered - Transient annotation covered - persisting data to DB through data layer covered
10 lines
254 B
Java
10 lines
254 B
Java
package com.example.springcrashcourse.student;
|
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
@Repository
|
|
public interface StudentRepository extends JpaRepository<Student, Long> {
|
|
|
|
}
|