Skip to content
Advertisement

Spring Data JPA – Get all elements

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

JavaScript

Take a look here

Spring Data JPA API

Look here a small example that will fetch all MyObj objects that are stored

JavaScript
Advertisement