http://www.springsource.org/spring-data The primary goal of the Spring Data project is to make it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services as well as provide improved ...
58
votes
12answers
41k views
How to solve “Plugin execution not covered by lifecycle configuration” for Spring Data Maven Builds
I am trying to work with Spring Data and Neo4j. I started by trying to follow this guide linked to by the main site. In particular I based my pom.xml off of the Hello World example file. Here is a ...
14
votes
3answers
780 views
Confused about Spring-Data DDD repository pattern
I don't know so much about DDD repository pattern but the implementation in Spring is confusion me.
public interface PersonRepository extends JpaRepository<Person, Long> { … }
As the ...
6
votes
3answers
697 views
How do Morphia, Mongo4j and Spring data for MongoDB compare?
I'm interested in how to they compare to each other, what's more mature, has more features, better for some use cases.
My own use case is to create a real-time monitoring service (think Chartbeat) ...
3
votes
2answers
85 views
How do you use Spring Data JPA outside of a Spring Container?
I'm trying to wire up Spring Data JPA objects manually so that I can generate DAO proxies (aka Repositories) - without using a Spring bean container.
Inevitably, I will be asked why I want to do ...
3
votes
2answers
191 views
DBRefs (Mongo Document references) not fetched eagerly
I am using Mongo in its simplest avatar possible (in conjunction with Spring Data).
I have two (first class) entities (@Documents) A and B, where A has a reference (@DBRef) of B within it. Everything ...
3
votes
1answer
470 views
QueryDSL Generated classes not able to access second level elements for querying
I am using QueryDSL with Spring Data JPA in my Java Project and have Generated files using QueryDSL maven plugin to use the QueryDSL Model classes generated by it. This works great when i use it for ...
2
votes
2answers
153 views
Why to use returned instance after save() on Spring Data JPA Repository?
Here is the code:
@Repository
public interface AccountRepository extends JpaRepository<Account, Long> {}
JpaRepository from Spring Data JPA project.
Here is the testing code:
public class ...
2
votes
2answers
362 views
Maven build problems with spring-data-jpa and querydsl
I've got an Eclipse Maven project for spring-data-jpa and QueryDsl.
I seem to have a problem with the maven-apt-plugin where if I do a mvn clean followed by a mvn install, it tries to "process" files ...
2
votes
1answer
287 views
Paging with Spring Data Graph/Neo4j
Is it possible to fetch Page results when using Spring Data Graph (Neo4J) as the data store?
The findAll(Pageable) seems to be the only Pageable query availalble when using the GraphRepository. What ...
2
votes
3answers
270 views
Spring Data Graph and Eclipse
Spent 2 days trying to understand how to enable Eclipse work with Spring Data Graph, have no idea yet. The code is like this:
@NodeEntity
public class Person {
public Person() {
...
2
votes
1answer
452 views
Spring data MongoDb: MappingMongoConverter remove _class
The default MappingMongoConverter adds a custom type key ("_class") to each object in the database. So, if I create a Person:
package my.dto;
public class Person {
String name;
public ...
2
votes
2answers
508 views
How to use Auditing in JPA/Spring-Data JPA?
I am using JPA & Spring-Data JPA in a project. I have one table wherei Insert and then update the data. However i need the auditing information to save the state of all the objects i.e. I need ...
1
vote
1answer
26 views
Implement embedded paging with total pages in mongodb
I've checked out an older question that is related with my embedded paging situation. Although the embedded paging with slicing works fine, the total pages solution is still missing, and i wonder ...
1
vote
0answers
27 views
Spring Data makes spring unable to find JAXRS's @Provider?
I am using Spring + Jersey to build an API service .
Recently , I try to incorporate Spring Data to my server .
I haven't truly use any Repositories in my running code , just add one line in my ...
1
vote
3answers
41 views
Inheritance in annotation parameters
I am trying to inherit following parameter in a java interface (an example from Spring Data JPA, but the question is generally about parameters to annotations):
public interface ItemRepository<T ...
1
vote
1answer
42 views
Mongo repository for Spring Batch?
Is there a Mongo-based job repository for Spring Batch? If not, would I need to implement JobInstanceDao and its siblings? Are there any examples or existing works that would help in this endeavor? ...
1
vote
3answers
122 views
Inheritance in HQL with Spring Data JPA
I have set of classes which inherit from a single super class:
Super
|
+------+-------+
Aaaa Bbbb Cccc
Each of the Aaaa,Bbbb,Cccc then should contain method findByTag. The ...
1
vote
2answers
80 views
Best Spring API for developing GenericDao
I see lot of implementation technique about spring jpa(jpatemplate,japdaosupport spring-data-jpa ,native way entitymanager,HibernateSupport,ect ),which one is best technique for developing Generic DAO ...
1
vote
1answer
63 views
Spring MongoDB Custom Converter not used when doing $set updates?
Short summaries before the simple examples :
Inserting new documents is OK, in the meaning that it uses my custom converter
Updating an existing document is not OK, in the meaning that it doesnt use ...
1
vote
1answer
120 views
How to make a custom search by spring-data-jpa framework?
I am very new to use spring-data-jpa, but it looks very promising. I used it to make all repository in my application like this:
public interface CustomerRepository extends JpaRepository<Customer, ...
1
vote
2answers
94 views
Scaning Spring Data repositories by Spring Config?
I'm trying to use spring data and spring config together in a small standalone application.
...
public static void main( String[] args )
{
ApplicationContext ctx = new ...
1
vote
3answers
185 views
Using Lucene/Solr with Spring Data
I am using Spring Data (Mongo) for my web application (close to a social networking website). Now, I wish to provide search capabilities over the content written within the application (such as posts, ...
1
vote
1answer
252 views
Spring Data MongoDB tries to generate queries for custom repository methods
Based on the Spring Data Document documentation, I have provided a custom implementation of a repository method. The custom method's name refers to a property which doesn't exist in the domain object: ...
1
vote
1answer
152 views
How to persist relationships between Neo4J NodeEntitys in Spring Data Graph without calling persist twice
The test below fails if I remove the first persist(). Why do I need to persist the NodeEntity in order for the Set to be instantiated? Is there some better way to do this? I don't want to have to ...
1
vote
1answer
251 views
Cypher query to get nodes with given property values
Being new to Cypher Queries on Spring Data Graph, this may be quite trivial...
I am looking for what would be the Cypher query to fetch all nodes that have a given value for a couple of properties. ...
1
vote
1answer
152 views
Boot-strapping Spring Data JPA without XML
What is the Java @Configuration equivalent to:
<repositories base-package="com.acme.repositories" />
in Spring Data JPA? I am trying to get rid of XML configuration in favour to ...
1
vote
1answer
223 views
Spring Data JPA and SimpleJPA/SimpleDB
I'm wondering if it is possible to specify SimpleJPA as the persistence provider used by Spring-Data-JPA. I'm not a JPA expert so I hope this question isn't silly. Is it as easy as just specifying ...
1
vote
1answer
215 views
Neo4j eager/lazy loading with Spring data
I'm investigating Neo4j and have a question with regards to object eager/lazy loading. Lets say I have class Trolley with has Set<Item> (with getters/setters). If I do the following:
Trolley t ...
1
vote
1answer
258 views
mongo db - can't initiate Mongo with replica set
I'm using version spring-data-mongo version 1.0.0.M4 - the latest version to this date.
I defined my bean like this:
<bean id="mongoOps" ...
1
vote
1answer
299 views
resolving mongodb references in spring
Let's assume that I have the following documents in mongodb in the employees collection:
db.employees.insert({_id: ObjectId("4d85c7039ab0fd70a117d733"), name: 'Siona',
manager: ...
1
vote
1answer
554 views
java.lang.IllegalArgumentException in Spring-data-Jpa
I am getting an exception
<code>
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'auditTrailRepository': FactoryBean threw exception on object ...
1
vote
1answer
52 views
spring-data - connecting to relational Databases
Researching Spring-Data - I understand why you would use for NoSQL databases but am struggling why you would use Spring-Data for relational databases over the standard Spring-ORM capabilities (e.g. ...
1
vote
2answers
583 views
How to use order by and Limit in Spring Data JPA using QueryDSL
I am using Spring Data JPA with a RDBMS in my project. I have a requirement where I have to fetch a single record from the Database from a table which has the latest date. For this I need to use a ...
1
vote
3answers
749 views
how to setup spring data jpa with multiple datasources
I am using Spring Data Jpa version 1.0.0.M2 here is the url:
http://static.springsource.org/spring-data/data-jpa/docs/1.0.0.M2/reference/pdf/spring-data-jpa-reference.pdf
All is promised to be very ...
0
votes
0answers
17 views
Why Mongo Spring Repository does not save the second object?
I implemented a Mongo Repository. In the service I want to create 2 objects and save them to the db. Here is the code:
PanelUser u = new PanelUser();
u.setUsername("shopadmin");
...
0
votes
1answer
23 views
setMaxResults for Spring-Data-JPA annotation?
I am trying to incorporate Spring-Data-JPA to my project.
One thing confuses me is how to achieve setMaxResults(n) by annotation ?
for example , my code:
public interface UserRepository extends ...
0
votes
1answer
66 views
How to compare 2 mongodb collections?
Im trying to 'compare' all documents between 2 collections, which will return true only and if only all documents inside 2 collections are exactly equal.
I've been searching for the methods on the ...
0
votes
1answer
56 views
Querying on a @DBRef field
Using: Spring 3.1.0.RELEASE, Spring Data MongoDB 1.0.0.RELEASE
I have a document class defined like this:
@Document
public class MyDoc
{
@Indexed
@DBRef
private User owner;
...
I'm trying ...
0
votes
1answer
27 views
findAndUpdate MongoDBRepository
My task is to create repository extending MongoDBRepository that allows me to define kind of findAndUpdate method. MongoOps and template approach is not allowed. This is how my MongoDocument looks ...
0
votes
1answer
42 views
Spring Data MongoDB return object converter
I have a large documents with 50 different fields in it. Only few fields are required when I save this document. When I fetch that document though Spring Data MongoDB is it possible to eliminate null ...
0
votes
0answers
53 views
Configure spring-data-mongodb repositories with Spring 3.1's Java configuration
<mongo:repositories base-package="com.acme.*.repositories" />
Is there a way to do this with new Java based @Configuration support?
0
votes
0answers
42 views
Is there a way to log queries on Neo4J like Hibernate?
So, here is the scenario:
I have Neo4J server running locally with some data in it
I have a web app using spring-data-neo4j
The following code is based on the example code Cineasts:
public ...
0
votes
0answers
41 views
splitting mongo custom-converters into multiple context files?
This is my configuration :
<org.springframework.version>3.1.0.RELEASE</org.springframework.version>
<spring.data.mongo.version>1.0.0.RC1</spring.data.mongo.version>
...
0
votes
1answer
72 views
spring-data-mongodb(1.0.0.RELEASE) is ocurred ClassCastException with AbstractMongoConfiguration
Here is "pom.xml"
<!-- Spring Data MongoDB -->
<dependency>
<groupId>org.springframework.data</groupId>
...
0
votes
0answers
15 views
Can I configure Spring Data “orcl” namespace to point to a custom datasource?
I'm trying to use the Spring Data "orcl" namespace to configure a custom datasource which is of OracleDataSource type. Is there any way to do this?
I tried using the springsource website ...
0
votes
2answers
206 views
Spring-Data for MongoDB exception while using @DBRef annotation for referencing
Here I am trying with @DBRef annotation for referencing object from another one in Spring-Data for MongoDB. But after running MongoApp class, result table data is getting inserted in DB but its ...
0
votes
1answer
156 views
Spring Data MongoDb for class inheritance
I want to store different data to one collection in MongoDb and have Spring data beans with appropriate field..
Sorry, I've skipped details.
Parent bean:
class A
int a
Childs:
class B ...
0
votes
2answers
65 views
Does Spring Data comes with hibernate embedded?
a little background here.I've been working with spring+hibernate(JPA+Session)+maven for while now.I'm used to Hibernate GenericDAO for all the basic CRUD functionality. Most of the time i use this ...
0
votes
1answer
65 views
Way to do validation through SpringData MongoDB
Is there any way to do validation like NotNull, Size, etc through SpringData librarirs for MongoDB?
0
votes
0answers
84 views
Using Hibernate @SQLDelete for Soft Delete across All Entities
We have a fairly complex data model and are using Hibernate and Spring Data JPA on top of MySQL. We have a base class that all domain objects extend to minimize boiler plate code. I would like to be ...