Spring Data is an umbrella open source project which contains many subprojects that are specific to a given database.
I am trying to work with Spring Data and Neo4j. I started by trying to follow this guide linked …
eclipse maven spring-data m2eclipseThis is the error that is thrown when trying to run my web app: [INFO] WARNING: Nested in org.springframework.…
java google-app-engine jpa spring-data spring-bootI am using spring data and my DAO looks like public interface StudentDAO extends JpaRepository<StudentEntity, Integer> { public …
spring spring-data spring-data-jpaWhat is the difference between CrudRepository and JpaRepository interfaces in Spring Data JPA? When I see the examples on the …
java spring jpa spring-data spring-data-jpaI use Spring boot+JPA and having a problem while starting the service. Caused by: java.lang.IllegalArgumentException: Not an …
spring spring-mvc jpa spring-boot spring-dataI'm wondering what the best way to load initial database data before the application starts? What I'm looking for is …
spring spring-boot spring-dataIn Spring CrudRepository, do we have support for "IN clause" for a field? ie something similar to the following? findByInventoryIds(…
java spring jpa spring-data spring-data-jpaI'm new to frameworks (just passed the class) and this is my first time using Spring Boot. I'm trying to …
java spring junit spring-boot spring-dataI have a Person class: @Entity public class Person { @Id @GeneratedValue private Long id; @ManyToMany(fetch = FetchType.LAZY) private List&…
java spring hibernate jpa spring-dataI have an use case where it calls the following: @Override @Transactional(propagation=Propagation.REQUIRES_NEW) public UserControl getUserControlById(Integer …
jpa spring-data spring-data-jpa