Tagged Questions
0
votes
3answers
51 views
MongoTemplate instance is not created inside spring
I want to try spring integration with MongoDB, For this purpose I did following things. but its not working Some how MongoTemplate instance is not created and throws java.lang.NullPointerException.
...
0
votes
1answer
34 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
17 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
1answer
57 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
36 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
298 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
0answers
42 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
1answer
73 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
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, ...
1
vote
1answer
55 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
0answers
94 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
2answers
52 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
2answers
97 views
Setting createdOn and UpdatedOn automatically
I am playing with spring-data and mongodb. What I am trying to achieve is to automaticaly set createdOn and updatedOn dates when I am creating and/or updating an object. So I basically created a ...
0
votes
0answers
275 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
112 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
94 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 ...
2
votes
1answer
211 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:
...
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 ...
0
votes
0answers
113 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
793 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
153 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
2answers
39 views
Spring Framework javadoc error
Iam new to Spring framework. Iam on following link:
http://www.springsource.org/spring-data/mongodb
When I click "API JAVADOC", I get 404 error on following link.
...
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();
...
0
votes
1answer
396 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
401 views
Date Range Query not working mongoDB
I have UesrFeedback document as describe below with date and I wanted to find out all documents between start and end dates. I am not getting correct result I get result that is out of range from ...
0
votes
2answers
1k views
Spring Data MongoDB Date between two Dates
i'm using Spring Data for MongoDB and got the following classes
class A {
List<B> b;
}
class B {
Date startDate;
Date endDate;
}
when i save an object of A it gets persisted like
...
1
vote
1answer
347 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 ...
2
votes
0answers
527 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 ...
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 ...



