Spring Data - JPA is part of the Spring Data umbrella project which makes it easy to implement JPA based repositories
I am trying to use Spring Data JPA 1.8 with the Java 8 Date/Time API JSR-310. Everything seems to work, until …
jpa java-8 spring-data spring-data-jpa java-timeI'm working with Spring Boot 1.3.0.M4 and a MySQL database. I have a problem when using modifying queries, the EntityManager …
spring hibernate spring-boot spring-data spring-data-jpaI've been working on a RESTful webservice with spring-data. A few days ago a special spring-data jpa REST framework was …
java hibernate spring-data spring-data-jpa spring-data-restI am using Spring boot 2 with Spring Data, Spring-Data-Elastisearch and Spring-data-Redis(for http sessions). When i start the app. I'm …
spring-boot spring-data spring-data-jpa spring-data-elasticsearch spring-data-redisI've implemented in my spring repository interface: @Query("SELECT max(ch.id) FROM MyEntity ch") Long getMaxId(); It works correctly …
java spring spring-data-jpa hqlI have to update two data sources as part of one transaction. That is - I do an update in …
spring hibernate transactions spring-data-jpa transactionmanagerI'm working on a migration software that will consume unknown data from REST services. I already think about use MongoDB …
postgresql spring-boot spring-data-jpa jsonbAll i know so far is that FindBy can return multiple results while FindOneBy will return a single result or …
java hibernate spring-boot spring-data-jpa jpa-2.0I'm using Spring JPA named querys in my repository. My problem is, that I can't find anywhere information what would …
java spring-boot spring-data-jpa named-queryLet's say I have a data model like this (pseudocode): @Entity Person { @OneToMany List<PersonAttribute> attributes; } @Entity PersonAttribute { @…
java spring-data spring-data-jpa querydsl