Does anyone know how to enable aspectj with gradle for mongo cross-store?
Hi, I'm trying to follow instructions and I am having trouble enabling aspectJ in order for mongo cross-store to work with gradle. Did anyone have any luck using gradle to enable aspectJ for mongo...
View Article[Spanish] MongoDB + Spring + $Ref + Find :(
Necesito ayuda! no he podido encontrar en ningún lugar, la forma de extraer los resultados. Tengo una clase: "Instrumento", que contiene un atributo: "Usuario" referenciando una colección con DbRef....
View ArticleMongo: @Indexed annotation ignored when using named collections
Hi there, I have a pojo annotated like this: Code: @Document class Car {  @Id  String id ;  @Indexed  String manufacturer ; } And I am using MongoTemplate to insert into mongo. If I insert without...
View Articlecan't serialize class java.math.BigInteger When using or operator
Hi, I'm using spring-data-mongodb:1.2.0 release with mongodb - 2.4.1. How come, I'm able to execute this: Code: Query.query(Criteria.where("_id").is(<BigInteger value>)); and, when I'm executing...
View ArticleUsing Redis as the Spring cache manager in order to cache custom java objects
Hello, I would like to use Redis as a cache manager in order to cache JPA entities coming from a MySQL database. I am new to Redis and it seems Redis is only able to cache the basic types/structures it...
View Articleget performance
Hi, I am processing large dataset and it looks like I am struggling with redis look up performance. there are around 600M keys. 4 MGET calls take more than 40ms in multithreaded (50 threads) env, and...
View ArticleSpring Data SimpleDD
Just trying to raise awareness for this Spring Data implementation for Amazon SimpleDB that I've been working on https://github.com/3pillarlabs/spring-data-simpledb. It might come in handy. Cheers!
View ArticleError message in neo4j context file "The content of '#AnonType_auditing' is...
I'm getting the following error message on line "<neo4j:config storeDirectory="target/neo4j-db"/>" (see beow). Please advise. Error Message: s4s-elt-invalid-content.1: The content of...
View ArticleProblems with Jackson / Redis hash mapping of nulls & collections
I'm having some problems with Redis / Jackson integration, and I'm unsure if it's a bug in the code, or something I've configured incorrectly. It appears that null values, and collections are not...
View Article@Controller Annotation Never Gets Called
I am trying to develop an app using neo4j database. I am completely new to this service but made a few classes to test it out. One of my classes is the controller but when I debug the index.jsp...
View ArticleWhy Am I Getting A Null Pointer Exception
Im using spring and neo4j to make an application that stores peoples information in a database. Every time I launch my application im getting this error but cant figure out why. My code is below the...
View ArticleNeo4J - Problem persisting a object with multiple fields anotated with...
Hi, I have a @NodeEntity Class with multiple fields annotated with "@Indexed(unique = true)" (see below). I'd like these fields to be unique. When I try to persist the Object with GraphRepository, I...
View ArticleQueryDSL/MongoDB Date Range Not Working
Query generate startDate >= Mon Sep 02 00:00:00 CDT 2013 && startDate <= Sun Sep 15 23:59:59 CDT 2013 Results brought back include dates outside the range. Code:...
View ArticleHive Connection Pooling
Trying to implement connection pooling for Hive with BoneCP. Getting following error. Looks like HiveDriver doesn't implement AutoCommit. Is there a way to turn off this setting? HiveConnection...
View ArticleAggregation Field Mapping and
hi, I would like to have a simple field which is the sum of 2 others (auto-calculated) on mongoDB I saw it's possible to use http://docs.mongodb.org/manual/refer...gregation/sum/ Simple collection :...
View ArticleSpring data and MongoDb in OSGI
Hi I'm trying to integrate Spring data and MongoDb into our existing OSGI framework. This was working fine until I tried to create some custom mappers, at which point an exception is thrown (see...
View ArticleSpring data, MongoDB and custom converters
Hi I'm currently using Spring data for mongodb version 1.1.1.RELEASE. We currently have a document that has an enum as a property, however the value of the enums are not the same as the enum name, i.e....
View ArticleSpring Data MongoDB aggregation framework implementation - exceptions
Hello all, I'm trying to use the new implementation of the Mongo Aggregation framework by Spring Data team I'm using the spring-data version 1.3.0.RC1 ! and for reference I'm looking at...
View ArticleID field not populated when saving map
I have a class that extends HashMap: Code: public class CustomMap extends HashMap<String, Object> { ... } Now, when I save an instance of CustomMap, everything gets saved to Mongo correctly....
View ArticleSpring data neo4j trying to save non-annotated attributes
I have a particular case where I want to have a class have an API where a NodeEntity is obtained "indirectly" from another NodeEntity directly related to that class. Basically, my model have Concepts...
View Article