Spring Data - JPA is part of the Spring Data umbrella project which makes it easy to implement JPA based repositories
I want to write some query methods in repository layer. This method must ignore null parameters. For example: List<…
spring hibernate spring-data spring-data-jpa jpqlI want to get all the results in single page, I've tried with Pageable p = new PageRequest(1, Integer.MAX_VALUE); …
java spring spring-data spring-data-jpa spring-repositoriesI have a LocalContainerEntityManagerFactoryBean as EntityManager instance. To quickly drop a full tables' content, I want to run the following …
java spring spring-data-jpa entitymanagerI am trying to migrate the application. I am working on from Hibernate to Spring Data Jpa. Though spring data …
java spring-data-jpa spring-dataTL;DR: How do you replicate JPQL Join-Fetch operations using specifications in Spring Data JPA? I am trying to build …
java spring jpa spring-data-jpa criteria-apiI'm using Spring JPA and I need to have a native query. With that query, I need to get only …
java spring spring-data-jpa projectionI was testing Spring Data 1.10.4.RELEASE, following the example in Spring Data Docs http://docs.spring.io/spring-data/jpa/docs/…
java spring-data-jpa spring-data projectionI have Java 8 Spring web app that will support multiple regions. I need to make calendar events for a customer …
java spring-data-jpa postgresql-9.3 java-timeI want to search data in User table by name case insensitive. @Repository public interface UserRepository extends JpaRepository<User, …
java spring jpa spring-data-jpa jpqlWhen using native sql operator IN i get exception. Although it throws an exception, it still works as it was …
java hibernate spring-boot spring-data-jpa hikaricp