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 ...
5
votes
0answers
42 views
Spring data version annotation not incrementing when used on a mongo collection
I am using spring data with mongodb to store binary data such as images etc
I want to maintain a version field to append to the url to cheat the browser from caching images.
See my document base ...
2
votes
1answer
283 views
Making spring-data-mongodb multi-tenant
In a post last august sbzoom proposed a solution to make spring-data-mongoDB multi-tenant:
"You have to make your own RepositoryFactoryBean. Here is the example from the Spring Data MongoDB Reference ...
2
votes
2answers
367 views
PersistenceConstructor argument variable name doesn't match instance variable name
I'm trying to persist the following object with spring-data-mongodb version 1.1.1.RELEASE:
@Document
public static class TestObject {
private final int m_property;
@PersistenceConstructor
...
2
votes
1answer
202 views
SD MongoDB polymorphism in subdocument
I just started developing some app in Java with spring-data-mongodb and came across some issue that I haven't been able to solve:
Have a couple of document beans like this:
...
2
votes
1answer
411 views
Set MongoDb converter programatically
I'm trying to use a custom converter with spring-data-mongodb. I want to create it programmatically, but I get the following error:
org.springframework.core.convert.ConverterNotFoundException: No ...
2
votes
2answers
439 views
How does Spring Data MongoDB repository query concatenation work?
When I create a method of a Spring Data repository like findByName(…) everything works fine. But when using findByField1AndName(…) Spring Data MongoDB generates query only for the last parameter:
{ ...
2
votes
1answer
312 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();
...
2
votes
0answers
524 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
1answer
53 views
Spring Data MongoDB - Criteria API OrOperator is not working properly
I'm facing Spring Data MongoDB Criteria API orOperator problem.
Here's query result for irregular verbs: (Terminal output)
> db.verb.find({'v2':'wrote'});
{ "_id" : ...
1
vote
1answer
125 views
Support for Auditable in spring-data-mongodb?
As far as I know, there is no support for org.springframework.data.domain.Auditable in the spring-data-mongodb project (version 1.1.1.RELEASE).
Does anyone has some tips or references how to implement ...
1
vote
1answer
66 views
Spring-data @Query annotation and interface
Spring-data-mongodb 1.1.2-Released (Spring-data-common-core 1.4.1.Released)
I am having some trouble with using the @Query annotation with interface. For example, if I have the following interface ...
1
vote
1answer
335 views
How to use spring data mongo @CompoundIndex with sub collections?
Assume that I have such entities like the following:
@Document(collection = "doc_a")
public class A {
@Field("id")
private Integer id;
@Field("b")
private Collection<B> b;
...
}
...
1
vote
2answers
160 views
Using jodatime in a Mongo entity with Spring Data
I have an entity that will be persisted with Spring Data to a Mongo Database:
@Document
public class MyEntity {
@Id
private String id;
@QueryType(PropertyType.DATETIME)
private ...
1
vote
1answer
213 views
MongoTemplate criteria query translation seems incorrect
I'm querying a collection that has a nested object. The domain model looks like this:
@Document(collection="a")
public class A {
protected Map<String, B> fields;
protected String uuid;
...
1
vote
2answers
157 views
MongoDB unique indexes disallow overwrite
I have created an index with unique=true on one of the fields in my Mongo document. This works as expected - it disallows duplicates by overwriting the existing entry.
I would like to disallow ...
1
vote
1answer
835 views
Error in custom repository interface
I'm trying to set up my first Java application using spring data for mongodb in a multi-module maven 3 project. Here are the relevant versions:
Java 7
mongodb-win32-x86_64-2.2.0
Spring Data ...
1
vote
1answer
157 views
Mongodb dynamic schemas with spring data mongodb
I'm trying to store configuration in MongoDB. I want the document schema to be dynamic so as to store different type of configuration in the collection. The configuration may consist of more than just ...
1
vote
1answer
313 views
Persisting Objects containing Objects with spring-data-mongodb
Below is a follow-up question to Question 13832188:
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 ...
1
vote
1answer
348 views
Questions regarding mongodb sub-document and spring-data-mongo querying
I'm still trying to get my hands around mongodb and how best Entities can be mapped. if you take for example: the entity user and the entity addresses. there could be one-to-many when someone is ...
1
vote
1answer
219 views
Not able to generate querydsl Q classes
I believe this question has been asked here for a while but there wasn't any accepted response. I've actually tried various tutorials but not getting them. I have a multi modules maven project. SO i ...
1
vote
1answer
538 views
Spring Data MongoDB support bulk insert/save
I have been google for a while, not sure whether Spring Data MongoDB supports for bulk save.
I need to save a collection of documents into mongo as atomic, either all saved or none saved.
Can anyone ...
1
vote
1answer
749 views
Spring data MongoDb throwing error Connection refused
Getting following error while connecting to mongodb using Spring Data:
java.io.IOException: couldn't connect to [/127.0.0.1:27017] bc:java.net.ConnectException: Connection refused: connect
at ...
1
vote
1answer
284 views
Stackoverflow when querying document with cycle reference using @DBRef
My Application uses MongoDb with Spring-Data.
My User.java is as follows.
User{
//other fields
@DBRef
List<Request> requests;
}
Request.java is as follows.
class Request{
...
1
vote
1answer
346 views
How To Configure MongoDb Collection Name For a Class in Spring Data
I have a collection called Products in my MongoDB database, which is represented by the interface IProductPrice in my Java code. The following repository declaration causes Spring Date to look to the ...
1
vote
0answers
17 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
1answer
45 views
Resolving subdocument types with Spring Data and MongoDB
I'm encountering an error with a Spring Data repository as it attempts to resolve a property expression:
public interface ContractRepository
extends MongoRepository<Contract,String> {
...
1
vote
0answers
39 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
1answer
37 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
0answers
54 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
1answer
161 views
How exactly does spring-data-mongodb handle constructors when rehydrating objects?
I have read http://static.springsource.org/spring-data/data-mongo/docs/1.1.0.RELEASE/reference/html/#mapping-chapter but cannot find the answer to the following basic spring-data-mongodb object ...
1
vote
1answer
195 views
Preventing duplicates in MongoDB using Spring Data (Spring Roo)
I have been trying to get my head wrapped around MongoDB, as it's used by Spring, so I decided to start a little project in Spring Roo.
In my project, I am storing my User Login data to MongoDB. The ...
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
237 views
Executing MongoDB Stored JavaScript/Procedures from Spring Java
I have few stored Javascripts in mongodb. I am using spring springframework.data.mongodb to access mongodb. How can i execute stored JavaScripts/procedures from this ?
1
vote
0answers
77 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 ...
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
50 views
Is spring data mongodb ready for production
I've seen spring data documentation and tried a little demo app. I like it because its easy to use. Mongodb and spring data is still arguably quite new technology so I'm worried of its maturity, ...
0
votes
1answer
210 views
Neo4j Spring data POC for social RESTful layer
Starting to work on a new project... RESTful layer providing services for social network platform.
Neo4j was my obvious choice for main data store, I had the chance to work with Neo before but ...
0
votes
1answer
76 views
MongoDB specific id
I can't find how to setup format "id" in MongoDB. I use SpringData Mongo and see id not normal. I want do id as postgres "BIGSERIAL" and auto increment. Anybody know how do it ?
0
votes
4answers
1k views
Spring-data-mongodb connect to multiple databases in one Mongo instance
I am using the latest spring-data-mongodb (1.1.0.M2) and the latest Mongo Driver (2.9.0-RC1). I have a situation where I have multiple clients connecting to my application and I want to give each one ...
0
votes
2answers
172 views
Spring Data - MongoDB indexing DBRef
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
2answers
50 views
SpringData Mongo @Column equivalent annotation (@Property?)
Is there a SpringData Mongo equivalent of the JPA @Column annotation?
Basically, I've got a POJO with a property that I want to store in Mongo with a different name. So, the following object:
public ...
0
votes
1answer
118 views
Unexpected OptimisticLockingException on MongoTemplate.save
Using MongoTemplate I'm trying to store an entity called Person. Since I want to use optimistic locking, the entity is versioned using the @Version annotation.
When I try to store a new Person entity ...
0
votes
2answers
395 views
Sort documents in collections while fetching
I have a collection called at MongoDB called resource.
It has the following documents:
{ "_id" : "Abb.e", "_class" : "Resource", "resourceEmail" : "test1@test.com" }
{ "_id" : "Dasd.tt", "_class" : ...
0
votes
2answers
356 views
MongoDB with Spring Data - Out of semaphores to get db connection
`
org.springframework.data.mongodb.UncategorizedMongoDbException: Out of semaphores to get db connection; nested exception is com.mongodb.DBPortPool$
SemaphoresOut: Out of semaphores to get db ...
0
votes
1answer
231 views
Cloudfoundry + SpringData + MongoDB…can't deploy
I have a simple project based on Spring Data and MongoDB. When I deploy this project to the cloud with the following Spring context:
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
1answer
256 views
Querying dates with Mongo Spring data vs Mongo's console (dates)
When querying for a date with Spring Data on MongoDB, the serialized DBObject could look something like {"start" : { "$lt" : {"$date" : "2012-08-06T16:19:14.044Z"}}}, which is valid in the context of ...
0
votes
1answer
32 views
Spring Data mongodb: adding credentials for MongoDb access
I have the following working configurations in my Spring application:
<mongo:mongo id="myRs" replica-set="myhost:27017">
<mongo:options max-wait-time="1500"
...
0
votes
1answer
35 views
Query for records that have a certain elements in an array
So I am trying to search for documents that have any of the given tags (i.e. "a", "b", or "c").
The MongoDB query is:
db.my_collection.find({ "tags" : { "$elemMatch" : { "$in" : ["a", "b", "c"] } } ...
0
votes
1answer
25 views
Distinct() command used with skip() and limit()
I have those items in my MongoDB collection:
{x: 1, y: 60, z:100}
{x: 1, y: 60, z:100}
{x: 1, y: 60, z:100}
{x: 2, y: 60, z:100}
{x: 2, y: 60, z:100}
{x: 3, y: 60, z:100}
{x: 4, y: 60, z:100}
{x: 4, ...
