Skip to content

Instantly share code, notes, and snippets.

@lhauspie
Created August 22, 2017 21:18
Show Gist options
  • Save lhauspie/e0776ae6606fbc96b9591f5ec8a2b7cd to your computer and use it in GitHub Desktop.
Save lhauspie/e0776ae6606fbc96b9591f5ec8a2b7cd to your computer and use it in GitHub Desktop.
Interface Spring Data Repository contenant les fonctionnalités de CRUD sur les produits
public interface ProductRepository extends MongoRepository<Product, String>, ProductCustomRepository {
Product findForUpdateById(String id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment