Skip to content

Instantly share code, notes, and snippets.

@slmanju
Created January 3, 2018 03:48
Show Gist options
  • Save slmanju/991911c44f58e44b072e519a93aa0794 to your computer and use it in GitHub Desktop.
Save slmanju/991911c44f58e44b072e519a93aa0794 to your computer and use it in GitHub Desktop.
import com.manjula.todo.model.Todo;
import org.springframework.data.jpa.repository.JpaRepository;
public interface TodoRepository extends JpaRepository<Todo, Long> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment