Spring Data is an umbrella open source project which contains many subprojects that are specific to a given database.
I have a Spring Data repository method with a native query @Query(value = "SELECT g.*, gm.* FROM group g LEFT …
spring hibernate jpa spring-data pojoI have an Entity Class like this: @Entity @Table(name = "EMAIL") class Email{ @Id @Column(name = "Id") Long id; @Column(…
java spring spring-data spring-data-jpaI'm developing application using spring data jpa,hibernate,mysql,tomcat7,maven and it's create error.I'm trying to figure it …
java spring-mvc jpa spring-data spring-data-jpaI'm using Spring Data JPA (with Hibernate as my JPA provider) and want to define an exists method with a …
java hibernate jpa spring-data jpqlWhat is the simplest way of declaring a Spring data JPA query that uses properties of an input parameter as …
spring jpa spring-data spring-data-jpaI'm using Spring / Spring-data-JPA and find myself needing to manually force a commit in a unit test. My use case …
java spring jpa spring-data spring-transactionsI want to write a Spring Data JPA repository interface method signature that will let me find entities with a …
java spring jpa spring-data spring-data-jpaI saw spring.jpa.open-in-view=true property in Spring Boot documentation for JPA configuration. Is the true default value for …
java spring jpa spring-boot spring-dataIn a web project, using latest spring-data (1.10.2) with a MySQL 5.6 database, I'm trying to use a native query with pagination …
spring spring-data spring-data-jpaI'm trying to connect each @Repositories to different DataSource(s) with Spring Boot and Spring Data JPA. I used the …
java spring jpa spring-data spring-boot