Spring Data is an umbrella open source project which contains many subprojects that are specific to a given database.
Is there any way to represent below query using spring-data mongo @Query annotation. db.users.find({userName: "titogeo"}, {requests: 1, _id:0}) …
java mongodb spring-data spring-mongoIn Spring Data, we have PagingAndSortingRepository which inherits from CrudRepository. In reactive Spring Data, we only have ReactiveSortingRepository which inherits …
spring-data reactive-programming spring-data-mongodbI am using spring-data mongo with the JSON based query methods, and am unsure how to allow optional parameters in …
java spring mongodb spring-data spring-data-mongodbHow would I convert the following MongoDB query into a query to be used by my Java Spring application? I …
spring mongodb spring-data aggregation-framework spring-data-mongodbTrying to use JodaTime's LocalDate with Spring Data MongoDB and Spring 4 but I am getting the following exception: SEVERE: Servlet.…
spring spring-data spring-data-mongodbWe have a project with MySQL database and Spring as the framework. I am very new to Spring and looking …
hibernate spring-data spring-ormI want to explore the new transaction feature of MongoDB and use Spring Data MongoDB. However, I get the exception …
spring mongodb spring-boot spring-data spring-data-mongodbI do have a simple MongoRepository and its entities do have a List<String> tags attribute. Is there …
spring-boot spring-data spring-data-restI have a Spring Roo application with GWT. On server-side I´ve got simple JpaRepository interfaces for all entities like: @…
java spring repository spring-roo spring-dataI have a project perfectly running with Spring Data MongoDB 1.4.2. I tried to update to 1.5.0 and I get this error …
java spring spring-data spring-data-mongodb