Spring Data for MongoDB is part of Spring Data project which provides a familiar and consistent Spring-based programming model for new datastores while retaining store-specific features and capabilities. The Spring Data MongoDB project provides integration with MongoDB document database. Key ...
2
votes
1answer
310 views
Convert Spring Mongo Update to JSON String
I have an instance of an Update object and I would like to convert it to its String JSON representation so I can use it later.
I created the update object like this:
Update update = new Update();
...
1
vote
1answer
36 views
How to clone a mongodb collection programmatically through Mongo Java driver of Spring Data MongoDB?
I want to clone a collection to a backup collection, before processing all the entries in it through my Spring controller.
On searching, I came to know about various ways to do so through terminal. ...
1
vote
1answer
212 views
Can Spring Data Mongo update only dirty field in a document?
I've started using spring-data-mongo for an application where there are a lot of stuff to be persisted.
We actually chose mongo because it's advertised so. Now heavily addicted to spring we found ...
1
vote
1answer
1k views
Convert Java List to a JSON Object keyed by attribute of the list objects using Jackson and Spring MVC 3.1
In my Spring MVC 3.1 project, I have a model structure where one object has an attribute that is a list of child objects. For example:
public class Person {
private String name;
private ...
0
votes
1answer
24 views
Spring Data JPa simple web Example with MySql and Maven
I am very new to JPA and Spring so can u people give me link or any working code of Spring Data JPA with MVC integration which have used Mysql and Maven.
0
votes
1answer
23 views
Spring Data mongodb: how to add credentials when running a replica set
I'm running MongoDB 2.2. I can add credentials to access my single instance MongoDB like this:
<bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
...
0
votes
1answer
60 views
Adding page support caused errors - Pageable pageable - spring-data-mongodb
I have Repository like this:
public interface IDomainRepository extends MongoRepository<Domain, String>{
}
after I adding paging support like this:
public interface IDomainRepository extends ...
0
votes
1answer
88 views
How to retrieve all matching elements present inside array in Mongo DB?
I have document shown below:
{
name: "testing",
place:"London",
documents: [
{
x:1,
y:2,
...
0
votes
1answer
83 views
How to retrieve element present inside array in Mongo DB?
I have structure shown below:
{
field1: "somevalue",
name:"xtz",
nested_documents: [
{
x:1,
y:2,
...
0
votes
1answer
252 views
MongoTemplate.find() not returning results as expected
I am using Spring's MongoTemplate.find() function to query my MongoDB database and I do not get any results back for queries that do return results through the mongo console.
For Example, the ...
0
votes
1answer
111 views
Spring Data converter error on first page load, works fine afterwards
I am using spring-data-mongodb dependency in my Spring MVC application. It was working fine till now but I needed to add a Class instance property to one of my domain objects. Since Mongo doesn't ...
0
votes
1answer
87 views
Factory bean 'customConversions' not found
I'm trying to update my MongoDB libraries to the latest, and now have a couple of errors, which might or might not be related. The first is in my applicationContext.xml, where I have the error ...
0
votes
1answer
98 views
Query a collection with DBRef
I have 2 entities as following:
@Document
public class Freelancer {
@Id
String id;
String name;
@DbRef
List<Project> bidProjects;
}
@Document
public class Project {
@Id
String id;
...
0
votes
1answer
68 views
How do I find all documents (in a collection) in mongodb using the @Query annotation
The @Query annotation makes it possible to specify a MongoDB query for a particular method. An example might be @Query("{ 'firstname' : ?0 }"). But what should the parameter to @Query be if I just ...
0
votes
1answer
147 views
Spring-data mongodb repository and inheritance
I have created a class user class like that :
public class User {
/**
* The list of roles for the user
*/
private List<String> roles;
/**
* The login information
...
0
votes
1answer
71 views
Customization of serialization policy spring-data-mongodb without using annotations
I want to customize / configure the serialization policy of spring-data-mongodb (version 1.1.1.RELEASE) without using annotations (like @Id, @Document, @Field) because I do not have access to the ...
0
votes
1answer
130 views
Porting query from JPQL to mongo using spring data mongo Criteria
I've ported some of my Entity from JPA to document and now porting some of my queries.
here is the JPA query:
em.createQuery("select distinct c from CustomerImpl c left join fetch c.addresses ca ...
0
votes
1answer
393 views
spring-data with neo4j + mongo version conflicts
In my spring application I am working with Neo4j DB via spring-data project.I want to add mongo db as another data store to my application.
It seems that there some conflictions while trying to work ...
0
votes
1answer
143 views
Advanced spring-data query/critera
I have been building a Spring based REST service using MongoDB and Spring Data - MongoDB.
See below; parts of my data model:
@Document
public class User{
.....
private List<EMail> ...
0
votes
1answer
365 views
Spring Data MongoDB Cross-Store plugin and JPA PrePersist and PreUpdate
We have an application with the following set up:
Java 6.0
Spring Data JPA 1.1.0.RELEASE
Spring Data MongoDB 1.0.2.RELEASE
Spring Data MongoDB Cross-Store 1.0.2.RELEASE
Hibernate JPA 2.0
We have ...
2
votes
0answers
518 views
MongoDB Lifecycle event access to MongoTemplate
I'm trying to implement a versioning system for my mongodb documents with Spring Data Mongodb. I thought i'd take advantage of the Mongo lifecycle events
Mongo Lifecycle Events in Spring
What I ...
1
vote
0answers
14 views
QueryDSL delete method
I'm using spring-data-mongodb 1.2.0 with QueryDSL 2.9.0.
Why doesn't the QueryDslPredicateExecutor have a delete(Predicate predicate) method?
Is there a workaround?
1
vote
0answers
33 views
Spring Data Mongo can not process entity inhretance correctly
I am using Spring Data Mongo in my project, as the following:
Spring Data MongoDB 1.2/ Spring Data Commons 1.5
Spring 3.2.2 RELEASE
MongoDB / QueryDSL 2.9/ Mongo Java Driver 2.10.1
Case 1: ...
1
vote
0answers
51 views
Mongodb document versioning using spring data
I am using Spring Data in my Java application to connect to MongoDb and have a requirement around versioning the documents (basically storing the history).
It seems that its pretty straightforward in ...
1
vote
0answers
76 views
Use Spring Data mongodb to store XMLBeans as BSON objects
I am looking into using Spring Data mongodb and so far I like what I see. However, when I try to store more complicated objects, for example one created using APache XMLBeans, I get a ...
1
vote
0answers
60 views
Null pointer querying embedded objects in array
I am trying to do something trivial without success.
I have the Profile pojo entity which contain an array of Items, each items contain itemId field and few more fields which are not relevant to the ...
0
votes
0answers
15 views
Spring data mongoRepository Query sort
I was looking to see how I could introduce a sort into a Query annotation in a repository method that I have.
I already saw this code in Google and here, but I could not make it works
...
0
votes
0answers
6 views
Instantiate Spring MongoRepository manually
I'm trying to test my spring data mongodb repositories, which are interfaces extending from MongoRepository, with embeddedMongoDb. Like this tutorial, I would like to create tests that don't use ...
0
votes
0answers
35 views
How to connect Java with MongoDB in Windows Azure's worker role?
I have a Spring RESTFul web service project that use "Spring Data MongoDB" library to connect with MongoDB database.
After successfully testing with my local machine, I am ready to deploy on cloud ...
0
votes
0answers
54 views
Spring Data MongoDB: Unit tests with repositories
How is it supposed to build some tests with the repository approach in Spring Data MongoDB? I would like to set the test database for my tests since I don't want to use the production database for ...
0
votes
0answers
49 views
No luck with version configration in maven - spring-data-mongodb, rabbitmq
I updated my versions in my pom.xml
<spring.version>3.2.1.RELEASE</spring.version>
<spring.data.jpa.version>1.2.1.RELEASE</spring.data.jpa.version>
...
0
votes
0answers
81 views
MongoDB FindAndModify extremely slow
i'm using mongodb and have some trouble with the speed. My collections got bigger and now contains about 7.000.000 items. As a result, the findAndModify query takes about 3 seconds. I have a index on ...
0
votes
0answers
40 views
how to update nested objects in array that match the condition in spring data - mongodb?
I have a document in mongodb that has been created from this java model:
class Comment
{
String pollID;
List<CommentDetail> commentDetailList;
}
class CommentDetailList
{
String ...
0
votes
0answers
44 views
convert a maven project to a simple non-maven tomcat project
i have a maven-mongodb-spring-mvc project that needs to be converted to a simple web dynamic project wherein eclipse(juno) would itself build a war and deploy it on tomcat ONLY.
can any one help me ...
0
votes
0answers
25 views
building query in spring-data mongotemplate
Can any one help me in writing java equivalent for below mongo query
db.schools.find( { zipcode: 63109 }, { students: { $elemMatch: { school: 102 } } } )
I have tried below code (spring data mongo ...
0
votes
0answers
37 views
mongoDB log files getlasterror: 1, w: “com.mongodb.WriteConcern.REPLICAS_SAFE”
We have mongoDB master slave configuration. I updated spring mongoDB template driver to be replica aware with property com.mongodb.WriteConcern.REPLICAS_SAFE. I am getting following error in the log ...
0
votes
0answers
68 views
How to use with Pageable in spring-data-mongodb?
I am newbie in spring + mongodb,
I want to know how to use with Pageable pageable,
I did function like this :
public Page<Domain> findByIp(String ip, Pageable pageable);
and I call it with :
...
0
votes
0answers
40 views
get recursive DBREf in MongoDB
I have following collection device_layout:
{
"_id" : ObjectId("515c2a11e4b024e31f5a07cf"),
"items" : {
"-2020048812" : {
"content" : {
"$id" : ...
0
votes
0answers
66 views
Spring data can not serialize entity on find and remove execution
I'm using spring-data-mongodb-1.2.0.RELEASE.
I have two classes A and B where B has a reference to A and it is annotated with @DBRef.
Class A:
@Document(collection = "a")
public class A {
@Id
public ...
0
votes
0answers
44 views
Getting Error while defining mongo:repositories
I get this error when I run my Junit test
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 15 in XML document from class path resource [mongo-test-config.xml] is invalid; ...
0
votes
0answers
85 views
Collection based multi tenancy in spring data mongo
I am starting a MULTI-TENANT project in spring data mongodb.
After reading this post, collection per tenant is a pretty decent approach in mongodb.
So how can I achieve this in Spring Data Mongo? ...
0
votes
0answers
57 views
Search term in list using spring-data-mongodb
How can i achieve the result of this query: db.thing.find({searchTerms: {$in : [/term/]} }) using spring data?
I tried something like below but i cant get the "like" regex to work, im probably ...
0
votes
0answers
42 views
Add concrete class info to instatiate interface to MongoTypeMapper in MappingMongoConverter
This question is related to SD MongoDB polymorphism in subdocument.
So I noticed that when I extend SimpleMongoRepository on an Interface in order to have polymorphic queries on concrete classes, ...
0
votes
0answers
98 views
(Close) Need Help ! @Index(unique = true) doesn't create Index (Spring Data & MongoDB)
My dependencies' version are
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.core.version>3.1.4.RELEASE</spring.core.version>
...
0
votes
0answers
88 views
GeoNear query with spring data mongodb
In my repository I have this method:
GeoPage<MyType> findByLocNear(Point location, Distance distance, Pageable pageable);
If I pass to it a Distance with Metrics.Kilometers, the GeoResults in ...
0
votes
0answers
124 views
RestEasy and generic interface
I am relatively new on RestEasy and I have following question:
How can I construct a Method on RestEasy without reinventing the wheel for a couple of Entities, say I have following:
@Path("service")
...
0
votes
0answers
298 views
Persisting objects containing primitive arrays with spring-data-mongodb
I'm using spring-data-mongodb version 1.1.1.RELEASE. I am able to persist an object if all the member variables are primitive types, even if the names of the @PersistenceConstructor arguments don't ...
0
votes
0answers
82 views
Creating a MongoDB repository instance results in NullPointerException
I've been having a Null Pointer Exception when upgrading from spring-data-mongo 1.0.0.RELEASE to 1.1.1.RELEASE . because i have a part of my project using JPA as well, i have spring-data-commons-core ...
0
votes
0answers
412 views
Accessing nested fields in MongoDB documents using Spring Data Read Converters
I'm using Spring Data with MongoDB and I'm having an issue accessing nested elements in my Mongo documents and convert those into Java fields. The following Spring query:
Query query = new ...
0
votes
0answers
154 views
How to create an OSGi safe Spring-Data Mongo Repository
In OSGi environment, there may be cases where I don't have access to a class at a certain part of the application.
What I am trying to do is create a Spring-Data repository such that if a class is ...

