Skip to content

Instantly share code, notes, and snippets.

@mohashari
Created June 28, 2018 17:30
Show Gist options
  • Select an option

  • Save mohashari/61337ccd61758631a5c95b60e65a1c62 to your computer and use it in GitHub Desktop.

Select an option

Save mohashari/61337ccd61758631a5c95b60e65a1c62 to your computer and use it in GitHub Desktop.
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