Skip to content

Instantly share code, notes, and snippets.

@bhawna94
Created July 5, 2019 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhawna94/f90b5174a4438174526be53cc161247d to your computer and use it in GitHub Desktop.
Save bhawna94/f90b5174a4438174526be53cc161247d to your computer and use it in GitHub Desktop.
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface StudentRepository extends JpaRepository<StudentInfo, String> {
//We can add our derivable query also.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment