Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save namila007/bc319df55150041dda81566aa02365f3 to your computer and use it in GitHub Desktop.
Save namila007/bc319df55150041dda81566aa02365f3 to your computer and use it in GitHub Desktop.
Repository
@Repository
public interface AuthorRepository extends JpaRepository<Author,Integer>
{
}
@Repository
public interface BookRepository extends JpaRepository<Book,Integer>
{
}
@Repository
public interface PublisherRepository extends JpaRepository<Publisher,Integer>
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment