Spring Data - JPA is part of the Spring Data umbrella project which makes it easy to implement JPA based repositories
I am trying Spring data JPA in my project. I want to know if there is an out-of-the-box API to …
java spring jpa spring-data-jpaIn a web project, using latest spring-data (1.10.2) with a MySQL 5.6 database, I'm trying to use a native query with pagination …
spring spring-data spring-data-jpaWhat are the main differences between Hibernate and Spring Data JPA? When should we not use Hibernate or Spring Data …
java spring hibernate jpa spring-data-jpaWith Spring CrudRepository Query; I want to select "DeviceType" entities with it's "name" property. But following query select the entitles …
spring spring-data-jpaI am getting javax.persistence.EntityNotFoundException error when I am trying to get User through Invoice object invoice.getUser().getId() …
spring hibernate jpa spring-data-jpaI just started working on a Spring-data, Hibernate, MySQL, JPA project. I switched to spring-data so that I wouldn't have …
java spring jpa spring-data spring-data-jpaWhen calling the saveAll method of my JpaRepository with a long List<Entity> from the service layer, trace …
hibernate spring-boot kotlin spring-data-jpa cockroachdbI'm working with PostgreSQL query implementing in JPQL. This is a sample native psql query which works fine, SELECT * FROM …
java mysql jpa spring-data-jpa jpqlI have a very complicated model. Entity has a lot relationship and so on. I try to use Spring Data …
spring spring-data-jpa specifications criteria-apiI am having a hard time deciding if I should stick with Hibernate for a new project, or get my …
java spring hibernate jpa spring-data-jpa