Skip to content

Instantly share code, notes, and snippets.

@brunodutr
Created March 17, 2019 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunodutr/c5b58da09a42b9ddb7c008dc56497943 to your computer and use it in GitHub Desktop.
Save brunodutr/c5b58da09a42b9ddb7c008dc56497943 to your computer and use it in GitHub Desktop.
package example.bdutra.jpa.person;
import example.bdutra.jpa.Repository;
public class PersonRepository extends Repository<PersonEntity> {
public PersonRepository() {
super(PersonEntity.class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment