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
84 views

JDO contains filter giving illegal argument exception

I can't get JDO contains to work, but I can't get a good explanation on the exception on google. Here's the code: Query q = pm.newQuery(SubjectEvent.class); ...
1
vote
1answer
253 views

How to query the datastore to get child objects and compare their properties using Java?

I am implementing a project on the google app engine. I would like to query the datastore to refer to the child object's property and use it to identify the parent object. Think of these as the ...
0
votes
1answer
233 views

could not persist data of format map<string,Arraylist> in jdo

iam trying to persist a Hashmap data in JDO. initially i created a Hashmap like Map<Integer,String> dat=new HashMap<Integer,String>(); and this worked perfectly and i was able to save ...
2
votes
1answer
99 views

JDO: How to make a detached object transient?

I'm using DataNucleus 2 JDO implementation. I have a detached object that i must attach, BUT i don't want to attach ALL the fields (in this case, a collection) public class Obj { private String ...
1
vote
2answers
167 views

Is this evidence of a GAE memory leak?

Depending on the setting of autocreateDatastoreTxns, I get a memory leak, with one instance of each of the classes below created for each query (a read). i.e. 100 queries creates 100 instances of ...
0
votes
0answers
160 views

Strange NullPointerException thrown by JDO PersistenceManager's getObjectById method

Here's an interesting situation I have run into. I have the following JDO persistable class. @PersistenceCapable(detachable="true") public class MyDataType implements Serializable { @PrimaryKey ...
0
votes
2answers
123 views

makePersistent for owned one-to-many rs. not working reliably in JDO

the makePersistent method of the PersistenceManager is not working reliably. one and the same junit-test is working and after a while its failing again?! i have an object that includes a collection of ...
0
votes
0answers
28 views

Add hashing images in JDO

I'll put pictures in JDO entity Image package image; //Import need modules import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.PersistenceCapable; import ...
1
vote
0answers
123 views

How to write a JDO query to check multiple object attributes with one string parameter?

My Owner class has 6 string attributes. I want to write a JDO query which should check a string with those all 6 attributes of Owner class and if any of those 6 attribute matches then that owner ...
2
votes
0answers
117 views

JDOUserException when persisting object: supposedly incorrect type is same as expected type

Trying to persist an object results in this exception being thrown. It complains about an incorrect type but then expects that same type. The exception started appearing after renaming the project ...
1
vote
1answer
39 views

Capped Collection with JDO

I'm just starting out with MongoDB and JDO (DataNucleus.) I'm trying to figure out how to use Capped Collections in JDO, any pointers? Am I missing some kind of annotation on an object, or is it more ...
0
votes
2answers
181 views

Sort entities in query by reverse order of creation w/o timestamp. GAE/J

We use GAE w Java and JDO 2.3. Is there way to sort entities of JDO query in reverse of creation order? I think that if we will use index columns instead of timestamp it will increase performance. Is ...
0
votes
1answer
75 views

How to add item to entity's 1-N property in GAE

I have entities Profile, Like and Place Places has Likes. Likes has reference to place and Profile. Place has 1-N relation on likes @PersistenceCapable public class Place { ...
0
votes
1answer
128 views

GAE, JDO: how to cache a parent entity without it's children

I have a problem that whenever I load a parent entity (User in my case) and put it to cache, all it's children (in an owned relationship) are cached as well. If I'm not wrong, the explanation is ...
0
votes
1answer
381 views

JDO Java Data Objects example

can someone help me to find a step-by-step example for developing JDO in a gwt project? I really want to know and learn the jdo and differences between that and jpa RGDS
1
vote
1answer
82 views

GAE, JDO: working with entities loaded from cache

I use simple layer for loading and storing entities by key or id and I just added caching to this layer. When entity with given key is in the cache, return it rather then fetch from the datastore. And ...
0
votes
1answer
159 views

One-to-many relationship children throw “One or more instances could not be made persistent”

I have two classes, each of which are PersistentCapable- an Event and a Score class. The Event class contains an ArrayList of Scores. I have a method that builds up a List of Events, then tries to ...
0
votes
1answer
310 views

JDO + RequestFactory - entity versioning

I was trying to set-up a really trivial RequestFactory example, but I failed. I persist entities in to my datastore just find, however when trying to pull them out again, i get a ...
0
votes
3answers
49 views

Can I remove an enum value with if it has been save with a JDO entity?

So I have saved a JDO entity that contains an value of MyEnum. public enum MyEnum { MyValue1, MyValue2, MyValue3; } However now I need to remove at least one of the enum values. Will ...
0
votes
1answer
162 views

Flaky Loading of 1-N Relationships with DataNucleus 3.x

I am using DataNucleus 3.0.0-release JDO implementation to connect my Java app to MongoDB. The related JARs in my CLASSPATH are as follows: datanucleus-api-jdo-3.0.0-release.jar ...
1
vote
2answers
256 views

JDO in AppEngine: keep the original entity when deleting from unowned relationship

I have defined an unowned relationship using JDO 3.0 syntax: @Persistent @Unowned private Set<Role> roles; I have several predefined roles which should be assigned to users. I use following ...
0
votes
1answer
81 views

JDO in App Engine: how can an owned relationship be not dependent?

Quote from the GAE documentation: An owned relationship can be "dependent," meaning that the child cannot exist without its parent. If a relationship is dependent and a parent object is ...
1
vote
0answers
192 views

NullPointerException in JDOPersistenceManager.getObjectById() using DataNucleus 3.0.0-release

I am using DataNucleus 3.0.0-release JDO implementation to connect my Java app to MongoDB. The related JARs in my CLASSPATH are as follows: datanucleus-api-jdo-3.0.0-release.jar ...
3
votes
1answer
370 views

NullPointerException running DataNucleus Enhancer 3.1.0-release

I am running DataNucleus enhancer from DOS as follows: java -cp ...
0
votes
0answers
35 views

How to refer a key from a class and add it as your key in JDO while adding entry

I am actually new to JDO and using it in the code. I am creating an add operation where, I have to add an entry into two tables such that, for example -> I have to set key of one table and use this ...
1
vote
1answer
342 views

Composite Keys in DataNucleus JDO implementation (field jdoStateManager)

I'm trying to create a PK class for a JDO Entity named Item. It's was soo simple with JPA, but now im practicing JDO. I'm using anotation configuration and this is how the two classes look like: ...
0
votes
1answer
112 views

Error reading manifest file “…datanucleus-core-3.0.0-release.jar!/plugin.xml”

I got a very strange error. This what I've done: I create a project (with Netbeans) which include datanucleuse-core-3.0.0-release.jar. The project can be built successfully. It also ran smoothly when ...
0
votes
0answers
71 views

Issue with mapping list of interfaces with annotations

I have a class Customer (below) that has a list of Accountable items (unidirectional). Accountable is an interface which is implemented by Appointment, Offer and Fee classes (below as well). When I ...
2
votes
1answer
68 views

how to handle JDO app engine transaction ConcurrentModificationException

Documentation @ https://developers.google.com/appengine/docs/java/datastore/transactions explains how to handle DatastoreTimeoutException, ConcurrentModificationException, or DatastoreFailureException ...
0
votes
1answer
59 views

Set fetchSize for owned relationship in JDO

Is there a way to control the fetch size used for owned relationship ? Example : @PersistenceCapable public class Employee { /** The contact info sets. */ @Persistent(defaultFetchGroup = ...
1
vote
1answer
161 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 = ...
1
vote
1answer
156 views

Can DataNucleus persist an abstract base class parameterized with Generics?

Using DataNucleus, I have been happy using an abstract base class to provide a 'long' ID to the sub-classes (please note the primitive type). When adapting an example from JPA I got the idea to ...
0
votes
1answer
278 views

Google App Engine JDO and Strong Consistancy

I have been experimenting with GAE (1.7.0) for a couple of weeks now and I am having some issues with STRONG consistancy. I have been researching the issue, but I am still unclear. Is some able to ...
1
vote
1answer
601 views

MongoDb ConnectionURL in jdoconfig.xml

I have setup a MongoDB instance on AWS and am trying to connect to it from another AWS instance where my web app is installed. The following is the contents of my jdoconfig.xml file: <jdoconfig ...
0
votes
1answer
143 views

JDO Query returns zero results

I am building a GWT app to access a list of houses persisted using JDO on the server side. The list of houses are then moved to the client side via an RPC "getHouseService" to be displayed and ...
1
vote
0answers
259 views

how to deal with datastore-indexes app engine?

for this example LINK i try to make it but this exception occurred ?? com.google.appengine.api.datastore.DatastoreNeedIndexException: no matching index found. The suggested index for this query ...
0
votes
1answer
137 views

One to many relationship at google app engine can't work? [duplicate]

Possible Duplicate: one to many relationship in java google ap engine caused error ? i have implement a system to save information about user . So i have aggregation at my class so the ...
0
votes
0answers
538 views

Class org.datanucleus.jdo.JDOPersistenceManagerFactory Was Not Found

my team used datanucleus library for client-server application. We used version 3.0.0. We can build the application via NetBeans successfully. The problem is, when the server-side application is run, ...
0
votes
1answer
185 views

one to many relationship in java google ap engine caused error ?

i have implement a system to save information about user . So i have aggregation at my class so the user class has list from contact class ...etc in the first page "test it's just for register the ...
0
votes
1answer
53 views

JDOQL regex support

Does JDOQL support ^ for matching the start and $ for matching the end? I am having troubles getting them to work. Are ^ and $ maybe already implied?
0
votes
1answer
49 views

JDO Appengine Paradigmns

I've just started dabbling in google ape engine. Right now I'm using JDO with the datastore to persistent my data. Pretty cool so far and I have most everything working the way I want. However, I ...
0
votes
1answer
574 views

Duplicate entry Exception using GoogleAuthorizationCodeFlow with JdoCredentialStore and DataNucleus

I have a problem with the GoogleAuthorizationCodeFlow (Java). I am trying to build a Google Calender connection for my web project using Google's "OAuth 2.0 for Web Server Applications". Therefore you ...
0
votes
1answer
111 views

List access synchronization in GAE

I just synchronized my java code to avoid multiple access to the same List. Here it is my code: List<Category> list = Collections.synchronizedList(listCat); .. pm.currentTransaction().begin(); ...
0
votes
1answer
108 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 = ...
0
votes
1answer
112 views

Inheritance on JDO

I'm trying to write a simple inheritance on JDO (NetBeans, not Eclipse. And not for GAE). This is very simple: @PersistenceCapable @Inheritance(strategy=InheritanceStrategy.NEW_TABLE) public class ...
0
votes
2answers
151 views

Is makePersistent of JDO PersistentManager not enough for creating child elements?

I have some code like this class root extends DomainObject{ Collection childElements; Collection childElements2; ..... //define other child element collections Collection getChildElements(){ ...
0
votes
1answer
127 views

What's the difference between jdbcType and sqlType for the @Column annotation?

Would someone please explain the difference between the sqlType and jdbcType of the the @Column annotation ? http://www.datanucleus.org/products/datanucleus/jdo/annotations.html#Column
1
vote
1answer
101 views

Prepared statements in Datanucleus - MySQL

Can Datanucleus (with JDO) use prepare statements when dealing with MySQL? if so - how can do I enable it? Is it turned on by default? EDIT: I forgot to mention: I'm using DataNucleus 2.2
0
votes
1answer
52 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 ...
1
vote
0answers
27 views

How to have a field member which is persisted in another schema?

Assume the following (I'm using MySQL) @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "true") public class TclRequest2 { @PrimaryKey @Persistent(valueStrategy = ...

1 3 4 5 6 7 17