Commit a90c1b4b800e7236e1d6a5e22acd4225329a09ed

Authored by jcartign
1 parent 589e1ad3

Enable JpaRepository for Comment

src/main/java/fr/plil/sio/examen/repositories/CommentRepository.java
... ... @@ -6,5 +6,5 @@ import org.springframework.data.jpa.repository.JpaRepository;
6 6 /**
7 7 * TODO: complete this interface for new find methods.
8 8 */
9   -public interface CommentRepository { //extends JpaRepository<Comment, Long>{
  9 +public interface CommentRepository extends JpaRepository<Comment, Long>{
10 10 }
... ...