Spring

NoteRepository

Path
pkg21spring/src/main/java/com/javamastery/notes/NoteRepository.java
Package
pkg21spring
Study order
0
Run
Read this file. It has no standalone main method.
Dependencies
org.springframework.data.jpa.repository.JpaRepository

There is no in-browser runner. This is the file from the curriculum, unchanged.

pkg21spring/src/main/java/com/javamastery/notes/NoteRepository.java
1package com.javamastery.notes;2 3import org.springframework.data.jpa.repository.JpaRepository;4 5public interface NoteRepository extends JpaRepository<Note, Long> {}