Created
April 30, 2024 16:14
-
-
Save lol97/379230bac3a8d09a3754339f470faeef to your computer and use it in GitHub Desktop.
BarangRepository for Spring boot Hibernate Basic 1 CRUD Menggunakan database H2 (sufyan97.com)
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.sufyan97.learn_hibernate.barang; | |
| import org.springframework.data.jpa.repository.JpaRepository; | |
| import org.springframework.stereotype.Repository; | |
| @Repository | |
| public interface BarangRepository extends JpaRepository<Barang, Long>{ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment