Java Data Objects (JDO) is a Java specification for accessing, persisting, and managing data between Java objects / classes and a datastore. Unlike the JPA specification, JDO is applicable to *all* types of datastore, whether it be RDBMS, ODBMS, document-stores, web-datastores, key-based-stores, or ...

learn more… | top users | synonyms

0
votes
0answers
14 views

ClassCastException using JDO query with a “contains” clause

I'm attempting to a JDO query using contains on an integer property, but I'm getting a strange ClassCastException trying to execute the query. I have similar code on a different entity type that uses ...
14
votes
6answers
5k views

High Level Java Client selection for Apache Cassandra

I got interested in geospatial applications last time and understood their need for flexible data storage solutions regarding partition tolerance. As I found a job advertisement as java developer ...
0
votes
0answers
34 views

Child entity not retrieved in JDO

I am not able to load the list of child entities (options) for following Poll entity even that I have specified the field to be in default fetch group and even touched it in findPoll() method. Poll ...
1
vote
1answer
142 views

GAE - JDO Query fails while using Enum field and 'contains' operator to filter data

I am using an Enum field in Datastore entity class. public enum MyEnum{ A(0x9001L), B(0x9002L), C(0x9003L), D(0x9004L), private long value; private MyEnum(long value) { this.value = ...
0
votes
0answers
35 views

App Engine JDO contains on Set property

I have the following class: @PersistenceCapable public class User implements Serializable { @PrimaryKey private long userId; @Persistent(defaultFetchGroup = "true") private Set<String> ...
1
vote
2answers
315 views

Persistent list in JDO (Google App Engine)

I`m developing the server side for a mobile app with Google App Engine and JDO in Java, and I have some problems saving objects list in the database. I have a one-to-many relationship between ...
0
votes
0answers
25 views

Google App Engine JDO Null Pointer Exception Unowned

When I am trying to get an object from the Datastore, which has a reference to another object, then this reference is null. Briefly speaking, I have a class Mission which holds information about the ...
1
vote
1answer
30 views

JDO query a list using a list

I am using JDO to query my database. The entity class looks kind of like this: class Entity { // other members of the class List<String> stuff; // members and methods } I am writing a ...
1
vote
0answers
42 views

JDO - java.lang.NoClassDefFoundError in Google Web Application

Im trying to make a Google Web Application in Java. I got a servlet named Get.java, a EMF.java that is taking care of the storage and a javabean, Person.java. Get.java: package no.nordnes; import ...
0
votes
1answer
55 views

AppEngine JDO query is not working as expected

I'm working with AppEngine and I want to query data entity with: Bool data 'optional' is False. ascending order for Date 'registrationTimestamp'. My code: Query query = ...
0
votes
0answers
27 views

How to solve errors created due to logical AND in jQuery

I am working on a module that generate query(JDO). I have a generate query button,clicking on which will generate a query in a text area. Then I have a save button,that saves the generated query. ...
0
votes
1answer
31 views

JDO Local Transaction Management

In JDO in the situation described below, After methodB() is executed (which has been called from methodA() ), if an exception occurs in methodA() will the rollback take place for the code both in ...
0
votes
1answer
23 views

JDO - Querying/linking child by parent (Google App Engine)?

I've been trying to get JDO working with parent/child relationships, but I'm not having much success. Using the relationship setup as seen here and queries as seen here, I want to be able to link a ...
0
votes
0answers
40 views

DataNucleus JDO on MySQL fails with FK violation on 1:1 relations

I have issues persisting a simple 2 classes on DataNucleus 3.1.3 on MySQL, where DataNucleus seems to create invalid foreign-keys, ending up in a "foreign key constraint fails" -exception from ...
1
vote
1answer
70 views

Google App Engine Datastore too slow persistence

I'm developing a GAE/J app using JDO to manage the Datastore. It offers a number of Endpoints to interact with the data and so on. I'm also developing a Javascript client for those endpoints. ...
0
votes
0answers
13 views

Receiving ClassNotPersistenceCapableException despite JDO Enhancement

I am experiencing a confusing exception. I created a plain old java object which shall be persisted to my remote MySQL database. When deploying the application to Amazon Elastic Beanstalk I receive ...
0
votes
1answer
36 views

Google App Engine & JDO: Transaction is not written to the datastore

We are using GAE with JDO2.3 and have this code: public void submit_job (HttpSession session, BlobKey blobKey) throws Exception { // START TRANSACTION PersistenceManager pm = ...
0
votes
0answers
24 views

Why does not work condition “OR” with Unowned annotation in JDOQL?

Here described how to filter entitys by unowned one-to-one relationship: Food chocolate = /*...*/; Query q = pm.newQuery(Person.class); q.setFilter("favoriteFood == favoriteFoodParam"); ...
0
votes
1answer
34 views

String concatenation in jdo query

I am trying to do a query that does a like search on concatenated results. In sql it would look like this: WHERE firstname + ' ' + lastname LIKE '%namesearch%' When trying this in jdo I do this: ...
0
votes
1answer
24 views

Using JDO in Elastic Beanstalk results in ClassNotPersistenceCapableException

I implemented an application with Elastic Beanstalk. Since some classes shall be persisted, I use (Apache's) JDO annotations in combination with DataNucleus. When running the application on a local ...
1
vote
0answers
27 views

HashSet turning into TreeSet when unit testing JDO GAE/J app in maven

I have a Java app for GAE which uses maven (the net.kindleit version) with the following classes: public class C1 { ... @Persistent(mappedBy = "c1") @Element(dependent = "true") ...
2
votes
2answers
294 views

difference between SDO and JDO in java

what is the difference between JDO (JSR 243) and SDO (JSR 235) in Java; what set of open source providers are available for these java specifications
1
vote
2answers
64 views

GAE datastore will not persist owned 1:1 relationship within embedded JDO class

I have three @PC classes: @PersistenceCapable class A { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) @Extension(vendorName = "datanucleus", key = "gae.encoded-pk", value ...
8
votes
0answers
194 views

Committed JDO writes do not apply on local GAE HRD, or possibly reused transaction

I'm using JDO 2.3 on app engine. I was using the Master/Slave datastore for local testing and recently switched over to using the HRD datastore for local testing, and parts of my app are breaking ...
0
votes
2answers
46 views

Persistence Manager not saving all data

I have the following issue with the database in my project, and I have no idea what is causing it: There is the following class hierarchy: Class A - has an embedded instance of class B Class B - has ...
-3
votes
0answers
25 views

Query against enum [closed]

I need some Java code example showing how to query and order by an enum field using JDO. Could not find any doc on this. Could perhaps Datanucleus provide an example ? For now I can persist my ...
0
votes
0answers
25 views

JDO not fetching text field

I have an Employee class @PersistenceCapable(table = "employee") @PrimaryKey(name = "PK_employee") public class Employee{ @PrimaryKey @Persistent(primaryKey = "true", valueStrategy = ...
1
vote
1answer
45 views

GAE persisted value not updating in deployed app but locally

Currently I'm working on a small project which involves GAE using JDO, however I seem to have a problem persisting the updated data - the strange thing is it works locally but not in the deployed ...
0
votes
0answers
29 views

Not able to persist entity using JDO in a GWT - App engine project

I am trying to persist a Poll entity which has a one to many relationship with User entity. But except other entities Poll entity is not getting persisted. Poll entity: package ...
1
vote
2answers
109 views

JDO on GAE - @Unowned fields returned as nulls

Let's say I have a very easy, classic setup: GAE(1.7.4) + GWT(2.5.0) Application, running on local Jetty (Development Server), using JDO for persistence. Let's also say I have just 2 ...
0
votes
1answer
22 views

One to many relationship in JDO

In one-to-many relationship in JDO between two objects A and B, should the object B be added to the collection of B's in A separately , when only B is persisted? or does this happen automatically? ...
0
votes
1answer
42 views

javax.jdo.JDOException: Unexpected error during precommit

Today i introduced some new fields into my data model and pushed it online and i started seeing this exception. Does anyone have an idea when this happens? org.datanucleus.ObjectManagerImpl ...
0
votes
0answers
31 views

How you will implement join query for JDO

You have a query say :- select p from profiles p, group g where p.profileId = g.profileId How will you implement it using JDO. It could be basic but I am new to JDO and was not able to goolge ...
0
votes
1answer
50 views

GAE with Datastore (JDO)

I am new to GAE and especially for Datastore (JDO) I have an Object Composition : User object has a reference of Contact object. I am able to store them in datastore. But the code allows to store ...
0
votes
1answer
27 views

Ordering using a declared variable's property

I have a ScInfo class that exists in many different classes. This class also has a list of ScDetails which has a Date member variable called nextExecution. I need to continuously look up eligible ...
0
votes
0answers
43 views

Unable to map 1:N Unidirectional relation using JDO

I need to map 1:N Unidirectional relation using JDO Annotation (DataNuecles). I'm having a pre-defined database. Relation is, 'User' can have a Set of 'UserDescriptions'. I already having two tables ...
0
votes
2answers
29 views

How to implement EndCursors in GAE/J - JDO

I have a GAE/J app using JDO on top of the Datastore and I've been able to paginate query results using cursors. The default implementation is something we call startCursor in my team (i.e give me ...
0
votes
1answer
45 views

Create new object from two tables JDO DataNucleus

I am attempting to create a DTO object by persisting two classes using DataNucleus. The DTO I wish to create: @PersistenceAware DtoObject{ Protected String Id; //populated by Order class ...
0
votes
1answer
22 views

Updating JDO Embeded Entity Field

I'm working with JDO embedded entities. I've gotten the parent and child entities set up just fine by this tutorial. My problem is that I can't seem to get changes I make to the child entity to ...
1
vote
1answer
487 views

JDO with Java EE 6 (CDI and JTA?)

I apologize if this is an obvious question, but I'm going through the Java EE 6 tutorial while reading a couple books and it's getting hard to correlate all of the information. I'm doing a little ...
0
votes
1answer
22 views

Could not save objects into a many many to relation in datanucles JDO

I'm having a question with saving objects to many to many relationship. Following are the two classes. Entity 1 => Application Entity 2 => User Application can have many Users and User can have ...
0
votes
0answers
8 views

Is it possible to filter a list in a queried object?

Assuming I have a class Country with a list of City. Is it possible to query Country objects with a list of City that would only have City objects with a specific property ? Like if country Egypt has ...
0
votes
1answer
97 views

Query two entities in Google App Engine JDO

Am new to google appengine and jdo. I do not know how to write a query in JDO with two entities. I have UserProfile and UserFeed entity like as below. @PersistenceCapable public class UserProfile { ...
0
votes
0answers
48 views

Migrate from GAE Datastore JDO to another database

I'm a little bit dissapointed with GAE Datastore after some years and I'm trying to move my app to another database system. I tried to change jdo configuration to use Cloud SQL instead of datastore, ...
1
vote
0answers
125 views

Using GWT and JDO, why does execute query always return null?

I have been working with GWT the last couple of months and the very last thing that I need to get to work is storing my applications data in JDO-objects with GAE instead of SQLITE. My application ...
56
votes
12answers
17k views

JDO vs JPA for Java on Google App Engine

I want to develop my project on Google App Engine with Struts2. For the database I have two options JPA and JDO. Will you guys please suggest me on it? Both are new for me and I need to learn them. So ...
0
votes
1answer
34 views

how can we avoid enhancing while using datanucleus?

I am trying to implement JDO with Datanucleus using xml mapping. I am avoiding annotations because it needs enhancing. Is there a way I can avoid this enhancing step and still use Datanucleus?
0
votes
0answers
27 views

(Invalid operator “=”. Did you mean to use “==”?) error with bulk update

Based on the info in that page, the Bulk Update section. I'm trying to run the following query: @Override public void setExportableRsMetrics(List<Object[]> rsMetricsSelected) { ...
0
votes
0answers
34 views

How to catch NPE when a key is null in a List with JDO on GAE/J

I am getting the following exception on App Engine when accessing a field which is defined like @Persistent(mappedBy = "shelf") @Element(dependent = "true") private List<ShelfData> shelfData = ...
0
votes
1answer
101 views

Class with PersistenceCapable annotation gets Attempt to store an instance of a non persistable type

Using ObjectDB [ObjectDB 2.4.1] javax.jdo.JDOUserException Attempt to store an instance of a non persistable type com.A @PersistenceCapable public abstract class B { ... @Embedded protected com.A a = ...

1 2 3 4 5 17