Spring Data is an umbrella open source project which contains many subprojects that are specific to a given database.
I'm working with a table in a database and that table don't have a primary key or a proper column …
java hibernate spring-mvc jpa spring-dataI am trying to convert list to page in spring. I have converted it using new PageImpl(users, pageable, users.…
java spring list pagination spring-dataI just started working on a Spring-data, Hibernate, MySQL, JPA project. I switched to spring-data so that I wouldn't have …
java spring jpa spring-data spring-data-jpaI want the user to be able to specify the limit (the size of the amount returned) and offset (the …
spring jpa pagination spring-data pagingI have the following configuration: <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> <property name="dataSource" …
spring hibernate spring-data spring-data-jpaI have a spring 4 app where I'm trying to delete an instance of an entity from my database. I have …
java hibernate jpa spring-data spring-data-jpaI was going through data access technologies supported by Spring, and I noticed that it mentions multiple options and I …
spring spring-data spring-jdbc spring-ormI'm trying to implement a custom Spring repository. I have the interface: public interface FilterRepositoryCustom { List<User> filterBy(…
spring spring-boot spring-dataI have a issue with Spring Data repositories. When I deploy, I get an exception and it's because Spring Data …
spring spring-dataI need to write an application with which I can do complex queries using spring-data and mongodb. I have been …
java spring mongodb spring-data spring-data-mongodb