Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Created March 10, 2016 13:52
Show Gist options
  • Save brunokrebs/87abc6cd42066c0c1908 to your computer and use it in GitHub Desktop.
Save brunokrebs/87abc6cd42066c0c1908 to your computer and use it in GitHub Desktop.
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