Spring Data - JPA is part of the Spring Data umbrella project which makes it easy to implement JPA based repositories
I have created Spring application. Pom xml is attached. It has a config like this (below) and some db/migration/…
java hibernate spring-boot spring-data-jpa flywayAfter starting my SpringBoot application, getting an exception on few minutes of the server startup. Did not use any HikariPool …
java spring-boot jpa spring-data-jpa hikaricpAlthough not novice, I am trying to learn spring framework (again!) in order to be sure that I really understand …
spring hibernate jpa spring-data-jpa spring-ormI'm updating some Spring Boot Applications with JPA queries. Everything works fine except from one specific kind of queries (findByJsonNode). …
java spring-boot jpa spring-data-jpa hibernate-typesI'm trying to understand how to use Spring Data's Query by Example capabilities, and am struggling to understand how to …
spring spring-data spring-data-jpa query-by-exampleI'm struggling to autowire beans from my custom library, imported with gradle. after reading couple of similar topics I am …
spring-boot spring-data-jpa multi-module spring-ioc component-scanIn my @Repository interface I created custom find method with JPQL @Query that contains parameter (addressType). from Address a where …
jpa java-8 jpql spring-data-jpaWith this configuration (MainConfig.java): import javax.transaction.TransactionManager; import javax.transaction.UserTransaction; import org.springframework.context.annotation.Bean; import …
spring-data-jpa spring-boot atomikosIn my application I need to massively improve insert performance. Example: A file with about 21K records takes over 100 min …
spring-data-jpa bulkinsertI'm using Spring Data JPA 1.7.1 I was trying pass query hints (e.g. for Hibernate query caching) to queries when …
spring hibernate jpa spring-data-jpa querydsl