Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public interface ProductRepository extends JpaRepository<Product, Integer> {
- Product findFirstByName(String name);
- List<Product> findAllByName(String name);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement