Skip to content

Instantly share code, notes, and snippets.

@jogaco
Last active May 21, 2017 17:42
Show Gist options
  • Save jogaco/d1a239e1e0b2122eb7f9f44af02632f5 to your computer and use it in GitHub Desktop.
Save jogaco/d1a239e1e0b2122eb7f9f44af02632f5 to your computer and use it in GitHub Desktop.
Spring Boot Tutorial
package com.operatornew.gamemanager.repository;
import com.operatornew.gamemanager.domain.Game;
import org.springframework.data.repository.PagingAndSortingRepository;
public interface GameRepository extends PagingAndSortingRepository<Game, Integer> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment