Created
June 28, 2018 17:30
-
-
Save mohashari/61337ccd61758631a5c95b60e65a1c62 to your computer and use it in GitHub Desktop.
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
| package com.codecika.kotlindemo.model.repository | |
| import com.codecika.kotlindemo.model.domain.Student | |
| import org.springframework.data.jpa.repository.JpaRepository | |
| import org.springframework.stereotype.Repository | |
| @Repository | |
| interface StudentRepository : JpaRepository<Student,Long> { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment