Created
March 10, 2016 13:52
-
-
Save brunokrebs/87abc6cd42066c0c1908 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 br.com.brunokrebs.repository; | |
import br.com.brunokrebs.model.User; | |
import org.springframework.data.jpa.repository.JpaRepository; | |
public interface UserRepository extends JpaRepository<User, Long> { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment