Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.example.apidemo.repository;
- import com.example.apidemo.model.Question;
- import org.springframework.data.jpa.repository.JpaRepository;
- import org.springframework.stereotype.Repository;
- @Repository
- public interface QuestionRepository extends JpaRepository<Question, Long> {
- }
Advertisement
Add Comment
Please, Sign In to add comment