저는 SpringData JPA를 처음 사용하며 특정 기준이 아닌 모든 항목을 가져 오는 데 사용할 수있는 방법이 있는지 묻고 싶습니다. 어떤 도움이 도움이 될 것입니다.
반응형
SpringData JPA-모든 요소 가져 오기
1. 질문(문제점):
2. 해결방안:
저장소에서 findAll 메소드 사용
repository.findAll()
여기를보세요
저장된 모든 MyObj 객체를 가져 오는 작은 예제를보십시오.
@Repository
public interface MyObjRepository extends JpaRepository<MyObj, Long> { }
@Service
public class MyService {
@Autowired
MyObjRepository repository;
public List<MyObj> findAllElements() {
return repository.findAll();
}
}
반응형