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 ...
0
votes
0answers
30 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> ...
0
votes
0answers
24 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 ...
0
votes
0answers
33 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
27 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
0answers
26 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
52 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
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
1answer
30 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
0answers
39 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
69 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
35 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
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 ...
0
votes
1answer
30 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:
...
1
vote
0answers
26 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")
...
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 ...
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
27 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 ...
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
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
41 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
1answer
26 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
42 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
21 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 ...
0
votes
1answer
44 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
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
0answers
46 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, ...
0
votes
1answer
96 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 {
...
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 ...
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
57 views
Jdo (datanucleus) integer_idx column and databinding
I've been trying to do a simple one to many object binding in DataNucleus JDO. It's just two classes (i stripped a simple fields):
@PersistenceCapable(table="ORDER",schema="mgr")
public class Order {
...
0
votes
0answers
30 views
JDO - List property ordering
I am experimenting with JDO against a legacy database schema, and I am trying to understand how to map various scenarios to my objects.
For example say I have an object called "Country" and another ...
0
votes
1answer
42 views
JDO unique fields in Google App Engine
According to this, Google App Engine's JDO implementation does not support JDO @Unique annotation. Is this still so?
For example, I have this class:
@PersistenceCapable
public class User {
...
0
votes
1answer
62 views
JPA, complex object graphs and Serialisation
I have a "Project" entity/class that includes a number of "complex" fields, eg referenced as interfaces with many various possible implementations. To give an example: an interface Property, with T ...
1
vote
1answer
39 views
PersistenceManager.getObjectById with ancestor key
I'm creating a Java GAE app using JDO for the Datastore.
I have these 2 classes User and Folder.
@PersistenceCapable
public class User {
@PrimaryKey
@Persistent(valueStrategy = ...
0
votes
0answers
11 views
JDO/JDB with persistent managers and so - How to Insert and Delete objects correctly?
:D
Hello!
I am new to stackoverflow and i wonder some things about JDO/JDB with Persistent managers and so on.
Soo, we have a Webprogramming-course called TDDI15 / TDDD24 at LiU in Sweden. And we ...
0
votes
1answer
93 views
Where is class definition for org/datanucleus/store/mapped/scostore/JoinSetStore
I am trying to run Data Nucleus+JDO+google cloud sql. However I get a class not found for org/datanucleus/store/mapped/scostore/JoinSetStore. What Jar contains that?
...
2
votes
1answer
55 views
Java equivalent for Python app-engine model/entity representation and operation
Consider the following app-engine models in python.
class Account(ndb.Model):
email = ndb.StringProperty()
nickname = ndb.StringProperty()
phone = ndb.IntegerProperty()
date = ...
0
votes
0answers
23 views
Separating control and data access in GAE Datastore with JDO
I'm creating a Java app in Google App Engine, using JDO to manage the Datastore.
I always try to create a kind of MVC architecture in my apps and separate the control and the data access through DAO ...
1
vote
1answer
71 views
Get DB object from JDO/DataNucleus and MongoDB with a String _id
I am using JDO and DataNucleus to persist runtime-generated objects into MongoDB. The database objects have their own unique identifier, a string, which I put into Mongo's _id field. This works fine ...
0
votes
3answers
88 views
Portable JDO/JPA Design for App Engine Datastore and Relational Database
I'm working on a project that need to run on App Engine and other Java Application Server. In App Engine we use datastore, and in other environment we will use traditional relational database (mostly ...



