JPA에서는 데이터베이스에 직접 쿼리문을 작성하지 않고도인터페이스만 정의하면 자동으로 CRUD(조회, 생성, 수정, 삭제) 메서드를 사용할 수 있습니다.또한, 메서드 이름만 잘 지어주면 원하는 조건으로 데이터를 검색할 수도 있습니다.📌 예제 코드package com.mysite.sbb.question;import java.util.List;import org.springframework.data.jpa.repository.JpaRepository;public interface QuestionRepository extends JpaRepository { Question findBySubject(String subject); Question findBySubjectAndContent(String..