We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d406b7 commit c74f6c8Copy full SHA for c74f6c8
src/main/java/org/blog/app/repository/PostRepository.java
@@ -0,0 +1,6 @@
1
+package org.blog.app.repository;
2
+
3
+import org.blog.app.domain.Post;
4
+import org.springframework.data.jpa.repository.JpaRepository;
5
6
+public interface PostRepository extends JpaRepository<Post, Long> { }
0 commit comments