Tagged Questions
0
votes
0answers
17 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
1answer
24 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
29 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
0answers
36 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
1answer
34 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"] } } ...
2
votes
1answer
272 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 ...
1
vote
1answer
42 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
34 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: ...
0
votes
0answers
50 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
41 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
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, ...
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
1answer
67 views
What is the purpose of using a JSON text document with Spring Data MongoDB? [closed]
I'm learning how to use MongoDB with Spring Data in a java application, but I'm trying to decide what's the best way to declare my documents' schema.
The application is going to be a restful web ...
0
votes
0answers
73 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
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 ...
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. ...
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
0answers
41 views
get recursive DBREf in MongoDB
I have following collection device_layout:
{
"_id" : ObjectId("515c2a11e4b024e31f5a07cf"),
"items" : {
"-2020048812" : {
"content" : {
"$id" : ...
1
vote
1answer
49 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" : ...
0
votes
2answers
164 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
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
87 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
59 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
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
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
1answer
65 views
Mongodb going to sleep and retry. total sleep time after = 38ms this time:100ms
I can see the following in my tomcat logs but do not understand why and how to solve:
Mar 19, 2013 3:50:01 PM com.mongodb.DBPort _open SEVERE: going to
sleep and retry. total sleep time after = ...
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
256 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 ...
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 ...
0
votes
1answer
113 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
1answer
112 views
Spring data MongoDB multiple databases
I was wondering if spring data for MongoDB could handle multiple databases and perform cross database queries and inserts.
for example if I want to store EntityA in DB dbA and EntityB in dbB and ...
2
votes
1answer
192 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:
...
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
1answer
180 views
Complex Mongo DB query - Sub documents
I have the document structured as shown
I would like to get a collection of moduleDataItems which has version say more than 0.
This is my attempt :
Query qu = ...
1
vote
1answer
156 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 ...
0
votes
0answers
90 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
108 views
Map embedded list of documents without id using spring data mongodb [closed]
I am trying to map this mongo document
{ "_id" : 1,
"connectionData" : [ {
"providerId" : "linkedin",
"providerUserId" : "lnramirez",
"displayName" : "Luis Ramirez M" },
...
0
votes
3answers
752 views
How to extend SimpleMongoRepository from spring-data mongodb?
I am trying to create a BaseDAO interface which can be extended by all DAOs. The project uses spring-data with mongodb. The problem is that if I make all the individual DAOs extend MongoRepository and ...
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
317 views
Prevent Spring Data for Mongo to convert ids to ObjectId
I'm using Spring Data for Mongo on an existing database. The previous application used plain strings for ids instead of ObjectId.
My problem is that Spring Data insists on converting the strings to ...
1
vote
1answer
212 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;
...
0
votes
1answer
148 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
56 views
Mongodb - how to add database user through spring application
I want to implement database authentication in mongodb.
In order to do that, I found out that I need to first create an admin user and then create separate users for each of my database through ...
0
votes
1answer
81 views
mongoDB friend relationship and atomic update
I need to store friend relationships for users in MongoDB, using Spring Data. My "schema" solution is to store the username (which is also the _id) of friends inside the user document. I'm not using ...
1
vote
1answer
324 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;
...
}
...
0
votes
1answer
54 views
Java classes to MongoDB “DDL” generation support
I would like to know whether Spring Data MongoDB supports such a feature as generating DDL (mongodb document structures) from java classes.
In other words something similar to Hibernate's ...
1
vote
2answers
154 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 ...
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 ?


