Skip to content

Instantly share code, notes, and snippets.

@SalithaUCSC
Created December 30, 2020 12:52
Mongo Data Repository Interface for Pojo - Product
import com.api.reporting.models.Product;
import org.springframework.data.mongodb.repository.MongoRepository;
public interface ProductRepository extends MongoRepository<Product, Long>, ProductRepositoryCustom {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment