Spring Data - JPA is part of the Spring Data umbrella project which makes it easy to implement JPA based repositories
I have the following Specification that I use to query for any Contact entities that are tied to certain ManagedApplication …
java hibernate jpa spring-data-jpa criteria-apiI have a simple Spring Boot application that connects to a PostgreSQL database and serves as a JSON service. Somehow …
spring postgresql spring-boot spring-data spring-data-jpaI have a Spring boot application and want to deploy as a WAR to Tomcat 7. As part of this I …
tomcat7 spring-data-jpa spring-bootI'm am currently trying to use a Spring Data repository to delete some of my entities. The delete call works …
java spring hibernate spring-data-jpaI am using Spring JPA. To be more precise I am using a Repository which extends JpaRepository and JpaSpecificationExecutor because …
java spring sorting spring-data-jpa jpa-criteriaI have a test class @RunWith(SpringRunner.class) @DataJpaTest I have two tests. In every test I do the same …
java spring spring-boot spring-data-jpa junit4I am getting error when I start my app JPA: Reactive Repositories are not supported by JPA. My Pom has …
spring-boot spring-data-jpa spring-webfluxHow do I make findByIn search using IgnoreCase of <Field>? I tried to use findByNameIgnoreCaseIn and findByNameInIgnoreCase with …
java spring postgresql spring-data-jpa daoI am trying to use Spring Data JPA with MyBatis. Since there isnt a Vendor Adapter for MyBatis, what is …
java spring-data-jpa mybatis spring-mybatisUsing Spring Data REST with JPA in version 2.0.2.RELEASE. How can I disable Hypertext Application Language (HAL) in the JSON ? …
json rest spring-data spring-data-jpa spring-data-rest