Spring Data is an umbrella open source project which contains many subprojects that are specific to a given database. The projects are developed by working together with many of the companies and developers that are behind these exciting technologies.

learn more… | top users | synonyms

0
votes
0answers
15 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
22 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.
-1
votes
0answers
17 views

Error Creating Bean with name “entitymaangerFactory” defined in ServletContext reource

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/dispatcher-servlet.xml]: Cannot resolve ...
0
votes
2answers
26 views

QueryException: Not all named parameters have been set: [Deactivated]

I am trying to use enum in jqp query but getting error org.hibernate.QueryException: Not all named parameters have been set: [Deactivated] here is my code import com.uzzz.enums.DStateEnum; ...
0
votes
0answers
20 views

No auto-reconfiguration of H2 datasource in Cloud Foundry

I'm using Spring Core 3.2.2.RELEASE, together with Spring Data 1.3.1.RELEASE with an H2 datasource to be deployed on Cloud Foundry, using only Java configuration. Although I configured a MySQL ...
0
votes
0answers
44 views

No qualifying bean of type [javax.persistence.EntityManagerFactory] is defined

Trying to get Spring Data REST and Spring Data Neo4j working. Here is the source: https://github.com/tony-landis/spring-data-neo4j-rest Running on Jetty, which starts up ok but on any request this ...
0
votes
0answers
22 views

Spring data mongo crossstore does not work in the newest Spring artifacts

I am using Spring 3.2.2, Spring data mongo 1.2.1(and mongo 2.4.3 64bit on Windows), Spring data JPA 1.3.2 (Hibernate 4.1.9.Final). All the codes are hosted on my github.com. ...
-1
votes
1answer
22 views

No bean named 'capacityRepository' is defined

package com.qatar.capacity.main; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.support.ClassPathXmlApplicationContext; import ...
0
votes
0answers
45 views

: Failed to read schema document 'http:// www.springframework.org/schema/data/jpa/spring-jpa.xsd'

hi guys getting this error in this line <jpa:repositories base-package="com.qatar.capacity.Repository"/> my XML file which include schema location are xsi:schemaLocation=" ...
0
votes
0answers
32 views

cvc-complex-type.2.4.c: 'jpa:repositories'. 'http:// www.springframework.org/schema/data/jpa/spring-jpa.xsd

I want to do this without using Maven I m getting this error at this line error ------Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching wildcard is strict, but no ...
0
votes
1answer
28 views

Spring Data JPA - Using @Transactional in a CDI environment instead of Spring environment

I realized after writing this question I could sum it up in a few sentences. How can I manage transactions in Spring-Data-JPA with CDI the same way you would by using @Transactional in Spring itself? ...
0
votes
1answer
25 views

Spring data mongo use OR in Query

Let´s see if somebody can help with this. I want use Repository of Spring Data mongodb, and I want use Query annotation to filter the find by value A=10 or A=20 @Query("{A: 10, A:20}") ...
1
vote
1answer
26 views

spring data like functionality for JEE6

I have experience building applications on the Spring Framework primarily. I was wondering if there was anything similar to the Spring Data API (to support a Data Access Layer) in the JEE6 space? ...
1
vote
0answers
24 views

Is there a way to eager fetch a lazy relationship through the Predicate API in QueryDSL?

I am using the QueryDslPredicateExecutor from Spring Data JPA project, and I am facing the need to eager fetch a lazy relation. I know that I can use a native JPA-QL query in the Repository interface, ...
0
votes
2answers
41 views

Autocomplete using Solr & Spring - issue with multiple words

I have indexed a database of locations using Spring Data Solr. I have the following fields: <field name="id" type="string" indexed="true" stored="true" required="true" multiValued="false" /> ...
0
votes
2answers
118 views

Camel Redis Component subscribe to a channel not working

I've a simple route that listens to a Redis channel. For some reason it's not working. Here is my route. I verified that data is being published into the Redis channel and I can read it back using a ...
0
votes
2answers
43 views

How do you type-in or copy paste \0 or VB null string character accidentally?

I have a client issue where sometimes this \0 ascii character is being entered where a Card Number (varchar 23 null) can be entered or left blank. This is in VB.NET and we are using DevExpress (8.3.3) ...
0
votes
0answers
15 views

Keep track of changes in fast growing DB tables

I'm developing a Spring application that uses a DB to store data. I'm using Spring Data (JPA) and Hibernate to connect to it. I've four entities, described below: Channel: Stores information about ...
0
votes
1answer
30 views

bulk insert in mongodb with Java and Spring data inserts only one documment

I am trying to perform a bulk insert of an List of object defined with Spring data @Document(collection="feeds") public class Feed { @Id private String id; @Field (value="feed_url") ...
1
vote
0answers
59 views

Spring Data Neo4j - Adding custom analyzers to lucene indexes (PerFieldAnalyzerWrapper)

Is it possible to customize lucene indexes in spring-data-neo4j, such that my indexes will be using custom analyzers? In particular, i want to use the PerFieldAnalyzerWrapper analyzer, so i will be ...
0
votes
1answer
52 views

Spring data not saving dates

I have an Spring project with one simple entity and a JPA repository. The entity has three variables: Name (String), active (boolean) and date (java.util.Date). Once deployed, Hibernate creates the ...
0
votes
1answer
69 views

Spring Data Neo4j - Combining Fulltext and Simple Indexes in the same Cypher query

I wonder how can i build a Cypher query that will combine Fulltext and Simple indexes using spring data neo4j. Consider the following node entity: @NodeEntity public class SomeObject { public ...
1
vote
3answers
58 views

Spring data jpa save can not get id

My entity id is generated, and it was working fine when I use DAO instead of Spring data JPA. @Id @Column(name = TABLE_COLUM_NAME_ID) @GeneratedValue private int id; Now I have starting to use ...
0
votes
1answer
57 views

Spring Data Neo4j - Getting an exception when running a cypher query

I'm getting a strange exception when trying to run a simple cypher query. First i'll introduce my code, and then i'll show what cause the exception. So i have the following classes: A simple class to ...
0
votes
1answer
59 views

Spring Data Neo4j - Exception when trying to use @Transactional annotation

I'm quite new with Spring Data and Neo4j, and there is something i don't understand about using the @Transactional annotation. It seems that i must declare an empty constructor for a class which i ...
0
votes
0answers
32 views

OneToMany relationship without both entities

I have and application in which persistence model I've something like this: Channel -> id, name Channel_keywords -> channel_id, keywords, last_mod I'm using hibernate + spring data, and wanted to ...
2
votes
1answer
270 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
14 views

QueryDSL delete method

I'm using spring-data-mongodb 1.2.0 with QueryDSL 2.9.0. Why doesn't the QueryDslPredicateExecutor have a delete(Predicate predicate) method? Is there a workaround?
0
votes
2answers
36 views

Audit DB record changes with Spring Data

I need to audit all changes on some of my DB tables. For example, for a given Employee I need to know all addresses and the day that this field was modified. Actually I'm using Spring Data, Hibernate ...
0
votes
0answers
28 views

Ignore some classes while scanning PackagesToScan

I've a package (say packagesToScan) containing Classes that I wish to persist annotated with @Entity. While defining ApplicationContext configuration, I've done as follows. @Configuration ...
1
vote
2answers
63 views

Managing history records in a database

I have a web project that uses a database to store data that is used to generate tasks that would be processed for remote machines to alter that records and store new data. My problem here is that I ...
1
vote
2answers
109 views

Spring data JPA Repository @autowired gives null

I've been trying out spring-data-jpa. With the help of Reference Documentation and my prior spring knowledge, I've set up spring-data-jpa configuration but the Repository that I @Autowired is always ...
0
votes
1answer
28 views

Spring data repository methods implementation

I'm working in a personal web project and I would like to use Spring Data and JPA. I found this nice blog entry in springsource.com and I've spent several hours trying to understand how this work and ...
0
votes
1answer
61 views

SpringData JPA Hibernate, trying to save a new nested object

I have a nested object like this public class Chart { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private long chart_id; ...
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> { ...
0
votes
1answer
55 views

Location of a Hadoop job input file

I'm trying to generate a sequence file in my Spring batch job to be passed to a Hadoop map/reduce. I managed to get the job to work once by manually copying the file onto the hdfs. And when it's run ...
1
vote
1answer
58 views

Spring-data @Query annotation and interface

Spring-data-mongodb 1.1.2-Released (Spring-data-common-core 1.4.1.Released) I am having some trouble with using the @Query annotation with interface. For example, if I have the following interface ...
1
vote
1answer
79 views

spring-data query method with a list as arguments

We have to query data from database where we need to find entities matching a list of key value pairs. We thought it would be a nice idea to use Spring Data JPA as we need also pagination. The tables ...
3
votes
1answer
119 views

PESSIMISTIC_WRITE with Spring and Spring Data JPA

How can I achieve the equivalent of this code: tx.begin(); Widget w = em.find(Widget.class, 1L, LockModeType.PESSIMISTIC_WRITE); w.decrementBy(4); em.flush(); tx.commit(); ... but using Spring and ...
0
votes
0answers
54 views

Spring Data MongoDB: Unit tests with repositories

How is it supposed to build some tests with the repository approach in Spring Data MongoDB? I would like to set the test database for my tests since I don't want to use the production database for ...
0
votes
1answer
56 views

Autowired beans are null in CustomRepositoryImpl

I'm just starting out with Spring Data and I'm trying to add a custom method to my repositories which requires another bean (which is preferably only created once (i.e. singleton)) The bean is ...
0
votes
0answers
57 views

Cannot find parent: net.java:jvnet-parent for project: com.sun.jersey:jersey-project:pom:1.9

My project invloves of spring-data-neo4j,when runnging mvn clean install, there is a maven build error. [ERROR] BUILD ERROR [INFO] ...
0
votes
0answers
35 views

Query produced by Spring Data - OneToOne mapping

I am analyzing query produced by Spring Data for my model: public class Description { @Id @GeneratedValue(strategy=GenerationType.AUTO) private Short id; @Version Timestamp ...
0
votes
0answers
48 views

Spring MongoTemplate updateMulti with Limit?

I'm using Spring Data's MongoTemplate to update multiple documents with a single query. I need to be able to limit the number of documents I update per call. For reasons unclear to me the limit isn't ...
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
47 views

How to GET/PUT values using Resteasy on the server side

I have a prototype Server-client app designed using Maven, Resteasy, and Springdata. Right now I have a Routeservice.java on the server side (part of maven web application) @Service ...
0
votes
1answer
94 views

How do I post more than one parameter using spring @requestparam/@requestbody annotation in json format

I want to upload an item object with it's image is it possible that i pass a complete object of my Item along with it's image from my Controller if yes then how may i Do it? and I need a Json ...
0
votes
2answers
67 views

Saving with Java springdata a mongoDB document with capped array ($slice and $sort)

I'm developing a log register using mongoDB and Java SpringData. Here MongoDb capped sub-collection talks about mongoDB structure, but I would do with Java. The most important thing it's that I have ...
1
vote
1answer
111 views

Is it possible to integrate OSGi with Spring Data?

I'm currently working on an OSGi application running under apache Karaf that uses JPA and QueryDSL. I was wondering if I could use Spring Data with QueryDSL instead of the current approach. The ...
1
vote
1answer
138 views

Spring Data / REST - Javascript (jquery, backbone) restful calls end up with a 404 response

I've got an example app: https://github.com/LateralThoughts/orsyp-frontend-training/tree/master/zupr_trackr. It exposes 3 JPA entities (Company, Employee, Activity) via REST resources handled by ...

1 2 3 4 5 10