Commit b33b89ca by Patryk Czarnik

ProductRestRepository

parent 73a7a8cc
package sklep.repo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
import sklep.model.Product;
@RepositoryRestResource
public interface ProductRestRepository extends JpaRepository<Product, Integer> {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment