I’m new to Spring Data JPA and I want to ask if there is a method that can be used to fetch all items, not by a certain criterion. Any help would be helpful.
Advertisement
Answer
Use the findAll method from repository
repository.findAll()
Take a look here
Look here a small example that will fetch all MyObj objects that are stored
@Repository public interface MyObjRepository extends JpaRepository<MyObj, Long> { } @Service public class MyService { @Autowired MyObjRepository repository; public List<MyObj> findAllElements() { return repository.findAll(); } }