Spring Data is an umbrella open source project which contains many subprojects that are specific to a given database.
I'm trying to wire up Spring Data JPA objects manually so that I can generate DAO proxies (aka Repositories) - …
spring jpa jakarta-ee spring-data spring-data-jpaI am integrating a spring boot project with a spring batch and data jpa project . All stuff related to job …
spring spring-boot spring-data spring-batchThe mongo docs specify that you can specify a query hint for count queries using the following syntax: db.orders.…
mongodb spring-data spring-data-mongodb mongodb-javaI need to set up liquibase for two datasources in Spring, at the moment it seems that only one liquibase …
spring spring-boot spring-data liquibaseHere is my document: @Document(collection = "posts") public class Post { @Id String id; String title; String description; } I'm trying to …
spring mongodb spring-data spring-data-mongodbWhat is the typical use case code that shows the difference between those two annotations - meaning the @RestController and …
spring-mvc spring-data spring-data-rest spring-restcontrollerI'm migrating my application from spring boot 1.5.x to 2.0.x. I want to keep jedis but I have a problem …
java spring-boot redis spring-data jedisI am trying to integrate our DAO maven module to spring, we don't want to change any code of the …
spring spring-data openjpa spring-data-jpaI am using spring data with mongo, and a repository. Eg: @Query("{ 'userName' : ?0 }") public User findByUsername(String username); I want …
java spring mongodb spring-data spring-data-mongodbI am writing a Spring Boot web-app and using a Postgres db to persist my data. I created a table …
postgresql hibernate spring-data database-sequence