Skip to content

Instantly share code, notes, and snippets.

@sabljakovich
Last active September 11, 2021 14:27
Show Gist options
  • Save sabljakovich/44cc2a4beb8c1d5b2d4f5652692c90c0 to your computer and use it in GitHub Desktop.
Save sabljakovich/44cc2a4beb8c1d5b2d4f5652692c90c0 to your computer and use it in GitHub Desktop.
package com.sabljakovic.mongospringdemo;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface ProductsRepository extends MongoRepository<Product, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment