DataNucleus AccessPlatform is an implementation of the JDO and JPA specifications for Java object persistence. It is fully standards compliant, and supports persistence to RDBMS, ODBMS, documents (XML, Excel, ODF), web-based (JSON, Amazon S3, GoogleStorage), map-based (AppEngine, HBase, Cassandra), ...
0
votes
0answers
12 views
Unable to read Inherited class instances with DataNucles JDO
I was unable to read the full inherited class instances as described in following URL
http://www.datanucleus.org/products/datanucleus/jdo/orm/inheritance.html
Following describes the mapping of ...
0
votes
0answers
19 views
appengine DataNucleus plugin 2.1.2 cache behaviour
i have upgraded to appengine sdk 1.8.0, appengine DN 2.1.2 and DN 3.1.3.
all working nice.
in the appengine docs it states
Level2 Caching is enabled by default.
...
0
votes
0answers
17 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 ...
0
votes
0answers
13 views
GAE, JPA, XG-transactions, too many entity groups exception
I know there is limit of 5 entity groups in XG-transaction on GAE but I think I am using only 3 groups(Commodity, Category, CommodityCategory) in one transaction and still getting this exception:
...
0
votes
1answer
36 views
SerializationException while desalinization com.google.appengine.api.datastore.Key GWT
I have a RPC-Call :
@Override
public void onSuccess(Void result) {
Window.alert("SuccessElse");
userService.getUser("103419018118650635943", new AsyncCallback<User>() {
...
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
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 ...
4
votes
2answers
65 views
How to update foreign key in one table with the primary key of the table that it references using JPA?
I've two tables as following,
USER
+--------+---------------+------------+--------+-----------+------------+--------------+----------------+----------------+-------------+
| USERID | EMAIL ...
0
votes
0answers
30 views
Google App Engine - Update JPA 1 to JPA 2
I want to update my GAE web app to use JPA 2.0. From the doc here, it says that I have to copy the content of appengine-java-sdk/lib/opt/user/datanucleus/v2/ to lib folder of the project.
This are ...
0
votes
1answer
22 views
Entity not queried immediately after commit in data nucleus JPA
I am using Data Nucleus JPA for persistence in my GWT application. my persist API in Entity looks like this:
EntityManager em = EMF.getEM();
try {
em.getTransaction().begin();
...
0
votes
0answers
45 views
Appengine-datanucleus error on one to many fetch after server is restarted
I have a project where I have a user that has a list of pages as Entities. When I first create the user with the pages all the fetches work as expected, but after I restart the local_db.bin ...
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 ...
1
vote
0answers
40 views
How to bypass JPA level2 cache for query and find
I'm using JPA2 with level2 cache enabled (jcache/memcache) on GAE. I have to run some update transactions and would like them to rely on datastore data and not the cached one. I tried to set the ...
0
votes
0answers
31 views
DN commit error code UNKNOWN
GAE 1.8.0
DN 3.1.1
DN-appengine 2.1.1
hi guys
occasionally i am getting the following error in my logs
is than error or erroneous logging?
org.datanucleus.transaction.Transaction commit: ...
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:
...
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 ...
1
vote
1answer
62 views
Why does Persistence.createEntityManagerFactory(“transactions-optional”) errors when appengine is deployed
I have created an appengine which runs fine and returns records from my Google cloud SQL db in debug mode. When I deploy the appegine and run the endpoint it errors. And the error I get in the ...
-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
30 views
Ordering but placing NULL values first
Is their a way in JDOQL to control whether NULL values are displayed first or last in ordered columns ?
I guess this is how to do it with SQL, but what about JDOQL ?
I tried putting an OR condition ...
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 = ...
0
votes
1answer
35 views
DataNucleus: There is no available StoreManager of type “”
I'm working DataNucleus+Maven. Below are the commands with their results :
mvn compile : BUILD SUCCESSFUL
mvn clean install : BUILD SUCCESSFUL
mvn -e datanucleus:enhance : BUILD SUCCESSFUL
...
0
votes
0answers
33 views
DataNucleus + Maven: No classes specified?
I'm trying to generate a table using DataNucleus through SchemaTool from eclipse. However, I get the following error:
SEVERE: No classes specified !
No classes specified !
An exception was thrown ...
0
votes
1answer
89 views
Persisting @ElementCollection of @Embeddable (Google App Engine, datanucleus)
I am trying to persist a JPA entity with a collection of custom @Embeddable objects using the JPA2 @ElementCollection annotation. Simple example (both classes are enhanced by datanucleus):
@Entity
...
2
votes
0answers
100 views
Creating new Datastore entities with optimistic locking (Google App Engine Java / JPA)
I have a JPA entity class User with a username @ID and no parent entity group. I need to make sure that when two parallel transactions try to persist a new User with the same username, only one is ...
0
votes
1answer
56 views
Google App Engine JPA getting com.google.appengine.datanucleus.EntityUtils$ChildWithoutParentException
Update: I found out the problem in my case is that I am generating the FbUser primary key by myself using keyfactory.createKey() method. If I change it to auto generate it works fine. But the problem ...
0
votes
1answer
46 views
Required entities listing in persistence.xml on GAE?
I'm developing an application that uses GAE, Guice, JPA 2.0 and Jersey. I want to get rid of adding each entity class as a <class> element in my persistence.xml.
Answers for this question talk ...
0
votes
1answer
36 views
How to write IN clause query in jdoQL?
I want to write a "IN" clause query in jdoQL similar to the given SQL query below.
SELECT salary FROM employee where empId IN (1021,2013,9872);
my objective is that i have a list of email addressess ...
0
votes
1answer
28 views
Equivalent of a repeated NDB StructuredProperty in JPA/JDO on Google App Engine
A list of StructuredProperties in NDB is modelled by a number of repeated properties, one repeated property per property of the StructuredProperty's model class. (See here: ...
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
1answer
103 views
JPA on Google App Engine: When calling persist(…), does it always happen in a transaction?
In my application I am persisting an entity that has a number of unowned children.
It seems that the call to persist which does the persisting of the entity and all children happens inside a ...
0
votes
1answer
46 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 ...
1
vote
1answer
95 views
Find by multiple ids in datastore using jpa 2.0
Here is my JPA query:
String jpql = "SELECT a FROM Account a WHERE a.id IN :list";
TypedQuery<Account> q = mgr.createQuery(jpql, Account.class);
q.setParameter("list", list);
return ...
0
votes
1answer
44 views
getting this error while enhancing using Datanucleus. any idea
I am trying to enhance a class (class is generated during run time with annotations). And getting this error. DN says it is null pointer.
any idea?
22:03:36,816 (pool-7-thread-1) DEBUG ...
0
votes
1answer
41 views
GAE datastore queries sometimes not working after changing entity
I'm trying to figure out an issue that I'm seeing. I'm noticing that when I change an entity object definition by adding a new field for instance, sometimes I no longer can get results from previous ...
2
votes
2answers
149 views
Datanucleus warning: Class was specified in persistence-unit but not annotated, so ignoring
When starting up my app I see for every class this warning:
WARN [DataNucleus.MetaData] - Class com.mycomp.MyClass was specified in persistence-unit myPersistenceUnit but not annotated, so ignoring
...
3
votes
2answers
108 views
Got Null when querying datastore by key
I have two models, Book and Chapter, in a one-to-many relationship. I manually create the keys for both Book and Chapter. To persist, I create a book object then add an instance of chapter to it and ...
0
votes
0answers
32 views
trouble getting one-to-many relationship to work on app-engine and JPA
I have a one-to-many relationship between Book and Chapter. I am able to create a book object and add chapters to it successfully (I look in the datastore and see my creation). However, after a fetch ...
2
votes
1answer
55 views
Child entity identity (crisis) in JPA and app-engine
I have two models: Author and Book, where an author may have a list of books. To start with Author has a long @id and Book has a string @id.
When I try to put data into the datastore, I get the error ...
0
votes
0answers
43 views
Getting 'Entity “XYZ” is already persistent' error while editing entity in GWT app
I am trying to edit a persisted entity in a GWT application. I am using JPA to query and edit the object. I am aware that when we query the object from Google datastore it is immutable and we need to ...
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
1answer
52 views
Aspect Maven Plugin 'overriding' already enhanced Datanucleus classes
I'm using the aspectj-maven-plugin together with datanucleus enhancement done by the appengine-maven-plugin.
In case I define the aspectj-maven-plugin before the appengine-maven-plugin everythings ...
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
1answer
113 views
DataNucleus / Kundera with HBase with ElementCollection - Unable to find the object with a null id
To start with, I use HBase 0.94.5 (also tried 0.92.2 with the same results).
I have a situation like this:
Variable class:
@Entity
@Table(name = "variable", schema = "keyspace@hbase-pu")
public ...
0
votes
1answer
59 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 {
...


