Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active July 10, 2016 13:53
Show Gist options
  • Save brunokrebs/f25d05fd7ef9fc4edaf8c4062113886d to your computer and use it in GitHub Desktop.
Save brunokrebs/f25d05fd7ef9fc4edaf8c4062113886d to your computer and use it in GitHub Desktop.
package com.someaddress.repository;
import com.someaddress.model.Product;
import org.springframework.data.jpa.repository.JpaRepository;
public interface ProductRepository extends JpaRepository<Product, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment