Last active
April 24, 2019 12:50
-
-
Save vjrngn/c0f5f5abaa5fc7ae2c19e42b732a5d16 to your computer and use it in GitHub Desktop.
Book repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.springframework.data.jpa.repository.JpaRepository; | |
import org.springframework.stereotype.Repository; | |
@Repository | |
public interface BookRepository extends JpaRepository<Book, int> {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment