Skip to content

Instantly share code, notes, and snippets.

@dubeboy
Created September 14, 2019 23:20
Show Gist options
  • Save dubeboy/123d02bcf0d3f9fc8d561aadad32d093 to your computer and use it in GitHub Desktop.
Save dubeboy/123d02bcf0d3f9fc8d561aadad32d093 to your computer and use it in GitHub Desktop.
package za.co.dubedivine.groceryapp.repository
import org.springframework.data.repository.CrudRepository
import org.springframework.stereotype.Repository
import za.co.dubedivine.groceryapp.model.GroceryItem
@Repository
interface GroceryItemRepository: CrudRepository<GroceryItem, Long>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment