Last active
September 11, 2021 14:27
-
-
Save sabljakovich/44cc2a4beb8c1d5b2d4f5652692c90c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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