Redis with read-only slaves
I want to use Spring-Data redis to access a redis cluster with one master and a bunch of read-only slaves. Can i configure a redis template to support that or do i have to rely on jedis to do that?...
View ArticleSpring 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. Code: @Document(collection = "a") public class A {...
View ArticleUsing Spring AOP with CGLIB and Spring Data Neo4j - problem with repositories
Hi guys, I'm writing a sample web application with two sources of data: a standard RDBMS (Postgres), integrated through MyBatis, and a Neo4j graph db. To support transactions (only on the RDBMS side, I...
View ArticleMongoDB Criteria.all
In mongo console I have: Code: > db.test.find({}) { "_id" : ObjectId("515afcfedba6a529520becfa"), "array" : [ { "key" : "one", "value" : 1 }, { "key" : "two", "value" : 2 } ] } { "_id" :...
View ArticleUsing Mongo namespace in Spring Profiles
I would like to use the same bean id while using the Mongo namespace for a Mongo instance in two separate Spring profiles. The only difference between the mongo:mongo configurations in the separate...
View Articlehow to use spring-data-mongdb-1.2.0 & spring-data-jpa1.1.0 in one project?
I have used spring-data-jpa1.1.0 for a while. recently I am trying to add spring-data-mongodb1.2.0 into my existing project. After building the project, I try to start the tomcat, it throws exception...
View ArticleSpring 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: Code: @Document(collection = "a") public class A { @Id...
View ArticleHow to use with Pageable ?
Hi, I am newbie in spring + mongodb, I want to know how to use with Pageable pageable, I did function like this : Code: public Page<Domain> findByIp(String ip, Pageable pageable); and I call it...
View ArticleMultiple RedisTemplates?
Hi guys, Is there anything wrong design wise to have multiple RedisTemplates within a single project all connecting to the same Redis instance? The specific scenario that I am asking about is that I...
View ArticleMongoRepository.save ... synchronized?
I suppose but... can someone confirm me that? Thanks!!
View ArticleSpring Data Mongo versions
For most of the Spring Data modules, it is pretty quick to figure out what is the latest version. But for Spring Data Mongo is it a little bit different. It is easy if you take the version in the maven...
View Article@Document Not Working on Class That Implements an Interface
Hi, Quick question. I'am applying the @Document annotation to a class that implements an interface but it does not seem work as expected. I expect the name of the collection to be what I declare in the...
View ArticleCypher query with IN keyword no more working
I've recently tried to upgrade an application using Spring Data Neo4j from 2.1.0.RELEASE to 2.2.0.RELEASE and now I'm getting an error when trying to execute a query with an IN keyword. Everything...
View ArticleSpring Data MongoDB query problem
I use the version of Spring-Data-MongoDB is 1.2, codes flow: Code: @Document public class Folder { @Id private String id; @DBRef private Email email;...
View ArticleSpring-Data MongoDb Performing a find with an "OR"
I need some assistance as to how to find all entries in the collection which have one of two values. I have implemented the LogItem project from the...
View ArticleOrderby Clause with Nested Inner Object Properties is not working
I am using latest version of spring mongodb framework. I have two Objects Class Object1 { private long uid; private Object2 obj2; } class Object2 { private long userPercentage; } How can i write a...
View ArticleDebug stacktraces for Spring scanning SD Neo4J annotations @NodeEntity
So in one of our web applications which is not using Spring Data Neo4j, but has a jar file in its classpath that has a few SDN annotated Entities, an exception is thrown with a warning. It doesn't stop...
View ArticleFind using regex taking way too long
Using the following code, I am doing a find using regex: Code: public List<LogItem> executeQueryRegex(String fieldName, String searchText) { System.out.println("Entering...
View ArticleNeo4j template transaction problem
Hi, i have a problem with transaction using spring-data and neo4j. I need to create some node with duplicated relationship, so i create node using graph repo and i create relationship with...
View ArticleAnyone from SpringSource monitoring this forum?
I am new to this forum, but after posting two threads and getting no response, I wonder of anyone from SpringSource is even monitoring this forum? :confused:
View Article