Spring Data - JPA is part of the Spring Data umbrella project which makes it easy to implement JPA based repositories
I have entity Market and Event. Market entity has a column: @ManyToOne(fetch = FetchType.EAGER) private Event event; Next I …
java spring rest spring-data-jpa spring-data-restI have a method that does a search with filters, so I'm using Specification to build a dynamic query: public …
java spring-data-jpa dynamicqueryLike spring-data-jpa have @NotNull annotation what can be used for this in spring-data-mongodb.?
spring-data-jpa spring-data-mongodbI am using Spring Boot 1.4.1 which uses Hibernate 5.0.11. Initially I configured a data source using application.properties like this: spring.…
spring hibernate spring-boot spring-data-jpaI am using spring-data-envers in my spring boot application. I can successfully log the audits on my entities. Now, I …
java spring spring-data-jpa hibernate-enversI have DAO implementation over spring-data: public interface TestDataRepository extends CrudRepository<DpConfigData, Long> { @Query(value = "select distinct(oid) …
postgresql hibernate-mapping spring-data-jpaI'm attempting to use this library for persisting JSON with JPA & Hibernate: https://github.com/vladmihalcea/hibernate-types I am …
java hibernate jpa spring-data-jpa hibernate-typesProblem: Native queries with Spring Data returning dates return java.sql.Date not java.time.LocalDate, despite the setup. Context: …
spring-data spring-data-jpa hibernate-5.x localdate jsr310I've a package (say packagesToScan) containing Classes that I wish to persist annotated with @Entity. While defining ApplicationContext configuration, I've …
spring spring-data spring-data-jpa applicationcontextI have a spring rest app.It is configured with annotations. When I add spring-data-jpa dependency the application is falling …
spring-mvc annotations tomcat7 spring-data-jpa spring-orm