Tagged Questions

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-stores (BigTable, HBase, Cassandra, MongoDB), as well as some others (LDAP).

learn more… | top users | synonyms

10
votes
3answers
899 views

Empty list in appengine datastore: java vs python

I have the following java model class in AppEngine: public class Xyz ... { @Persistent private Set<Long> uvw; } When saving an object Xyz with an empty set uvw in Java, I get a "null" ...
10
votes
5answers
4k views

Conflicting versions of datanucleus enhancer in a maven google app engine project

I'm having a problem setting up datanucleus enhancer to use with a google app engine project. If I use the datanucleus eclipse plugin everything goes well, but in my maven project I get a strange ...
9
votes
3answers
399 views

Google App Engine App with JPA deployment hangs

I have a java GAE web app with datanucleus as the JPA provider. When deploying locally on my machine - the deployment hangs (takes minutes). Looking at the task manager I have a javac process running. ...
9
votes
4answers
3k views

Can Hibernate be used as the JPA provider in Google App Engine

Can Hibernate 3.5.x be used as the JPA provider instead of the default provider in the latest version of Google App Engine (1.3.2)
7
votes
5answers
2k 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 ...
6
votes
1answer
2k views

Multiple unique constraints in JPA

Is there a way to specify using JPA that there should be multiple unique constraints on different sets of columns? @Entity @Table(name="person", ...
5
votes
1answer
133 views

Migrating fields in JDO

We are using JDO in one of our projects. This has been running for quite a while and naturally we need to change the model a bit. What is the best practice when migrating fields in entity classes in ...
5
votes
3answers
4k views

How to turn off DataNucleus Enhancer while working with Google App Engine

I am working in Eclipse on a Google AppEngine Java code. Every time I save a java file, the DataNucleus Enchancer starts off "Enhancement of Classes". Its quite irritating since it takes away focus ...
4
votes
2answers
155 views

App-Engine JDO consistent reading not working, maybe caching?

Today it's the first time I'm using GWT and JDO. I am running it with Eclipse in the local debug mode. I do the following thing: public Collection<MyObject> add(MyObject o) { ...
4
votes
1answer
162 views

JDO best practice: Store objects as a collection under their parent or independently?

I have a User and Transaction class Each Transaction logically belongs to a User. But I may need to query for some subset of Transactions (ex: return all Transactions for User A with ...
4
votes
4answers
2k views

Specifying an index (non unique key) using JPA

How do you define a field, ie email as having an index using JPA annotations. We need a non-unique key on email because there are literally millions of queries on this field per day, and its a bit ...
3
votes
2answers
105 views

@Unique doesn't have any effect in DataNucleus w/ NeoDatis

Using JDO / DataNucleus / NeoDatis datastore I added @Unique to a field of a persistable object, however I am allowed to create multiple objects which violate the unique constraint. The docs for ...
3
votes
2answers
2k views

datanucleus enhancer & javaw: “the parameter is incorrect”

I'm on windows XP using eclipse and the datanucleus enhancer for a gwt + gae app. When I run the enhancer, I get an error: Error Thu Oct 21 16:33:57 CDT 2010 Cannot run program "C:\Program ...
3
votes
1answer
1k views

How can I turn an Eclipse GWT/GAE app into an Eclipse Tomcat/mySQL app?

Sorry in advance for the long post but the problem I am facing here is quite crucial for me, so here we go... I have a Eclipse GWT (2.0) Web Application using the the GAE and making transactions with ...
3
votes
1answer
2k views

Maven building for GoogleAppEngine, forced to include JDO libraries?

I'm trying to build my application for GoogleAppEngine using maven. I've added the following to my pom which should "enhance" my classes after building, as suggested on the DataNucleus documentation ...
3
votes
2answers
364 views

Is there any advantage for using a library other than Hibernate for JPA?

I've been using JPA for some time now and been in projects where we've used both Hibernate Annotations and Toplink Essentials. AFAIK the project leader chose Toplink because Netbeans had it ...
3
votes
3answers
3k views

Google App Engine - org.datanucleus.exceptions.NucleusUserException: Object Manager has been closed

Why does the code below result in org.datanucleus.exceptions.NucleusUserException: Object Manager has been closed? The exception appears to be thrown at query.getResultList(). public final void ...
3
votes
1answer
1k views

Entity to DTO conversion with JPA

I'm using DataNucleus as a JPA implementation to store my classes in my web application. I use a set of converters which all have toDTO() and fromDTO(). My issue is, that I want to avoid the whole ...
3
votes
2answers
1k views

Appengine jdoconfig.xml for local database

Has anyone successfully configured JDO datanucleus default to google app engine to work on a local database? Why am I always getting an error in jdoconfig.xml when I have specified the property ...
3
votes
3answers
978 views

Delete an entity by key without fetching it first in app engine (using JDO)

Is there a way to delete an entity without having to fetch it from the datastore first? I am assuming I already have the key or id for the entity. I'm thinking of something like deleteObjectById that ...
3
votes
1answer
859 views

Many-to-Many relationship in DataNucleus (JDO) doesn't persist

I don't manage to persist a many-to-many link with DataNucleus using JDO. I have two classes Book and Shop. This is the orm mapping file: <?xml version="1.0"?> <!DOCTYPE orm PUBLIC ...
2
votes
2answers
63 views

Maven/GAE - Missing some Datanucleus classes

I have been struggling for hours trying to figure the good pom.xml out for my already existing GAE/J project. Here is the "most working" version of my pom.xml (and it's probably terribly messy): ...
2
votes
0answers
43 views

DataNucleus, JDO, how to persist my own List implementation?

I have written my own java.util.List implementation, and now i want to store it in a MySQL using DataNucleus. My implementation consists of a public class that implements the List interface, and a ...
2
votes
2answers
130 views

Salesforce's Database.com and Google App Engine via JPA

Currently i try to connect (via JPA/Datanucleus) with an application, hosted by Google App Engine, to the database service of database.com (Salesforce) After many hours of reading and trying, i could ...
2
votes
1answer
82 views

Generate JDO objects from existing database

Is there a tool to generate JDO objects from an existing database? I prefer a awesome looking Eclipse plugin which i could use to generate and maintain the object but it seems that this is currently ...
2
votes
0answers
49 views

DataNucleus JDO model from database tables

Is it possible to create a JDO model from an existing database using DataNucleus (or may be some other thirdparty tool) There is a guide to generate the JPA model: ...
2
votes
5answers
135 views

Should ORM / RDBMS be used with Java desktop applications?

I've been racking my brains on this one for a while. I've been living in the Django world for a while and it's hard to come back to Java. I'm making a desktop Swing application that does some ...
2
votes
0answers
264 views

Datanucleus + OSGi (Equinox) gives error No suitable driver found for jdbc:mysql://localhost:3306/jdoosgitest

I am trying to use datanucleus jdo implementation inside the osgi environment but I am constantly getting error : No suitable driver found for jdbc:mysql://localhost:3306/jdoosgitest I have been ...
2
votes
2answers
376 views

How to implement a roundtrip from XML Schema using Java with a Database

What is the best way of implementing a roundtrip for receiving XML files and eventually persisting the data into a database using Java. Currently I have: 1. An XML Schema & XML data files send to ...
2
votes
1answer
96 views

How to remove object from database when it's not referenced anymore in jdo? (n:1 relationship)

I have the class "Character" and the class "Faction". A character has a faction. A faction can be used by many characters. The factions get persisted when the character is persisted. When there is no ...
2
votes
4answers
415 views

JDO: Is the PersistenceManager a singleton?

Just the basics: I'm using DataNucleus backed with an embedded DB4O database. If I do this simple test: PersistenceManager pm1 = persistenceManagerFactory.getPersistenceManager(); ...
2
votes
1answer
133 views

ClassCastException in DataNucleus DAO object when persisting/retreiving an Object using JDO

I've created a simple webapp using Spring & Jetty, and am creating a hello world JDO test using DataNucleus & DB4O. I can persist a class no problem, but when I go to query for the class I ...
2
votes
1answer
49 views

What are the consequences of failing to close a query or persistence manager?

I see from every example for the appengine datastore that it is important to surround query executions, etc with try{}finally{} blocks to ensure that queries are always closed. What happens if a ...
2
votes
1answer
560 views

GAE JPA DataNucleus One-to-Many object creation

Let's say an Owner has a collection of Watch(es). I am trying to create Watches and add the newly created Watches to an existing Owner's collection of watches (an arraylist). My method is as ...
2
votes
2answers
469 views

JPA Query toString

I have a JPA Query I am executing on the Google App-Engine datastore. I am building the query using parameters. After all parameters have been inputted, I wish to view the Query String. That is, I ...
2
votes
1answer
239 views

AppEngine development enviroment gives java.lang.VerifyError

I'm getting following error when I run my app on eclipse development enviroment, but when I deploy app to appengine it works fine. Is it possible to get this work in development enviroment? HTTP ...
2
votes
2answers
413 views

Appengine datastore phantom entity - inconsistent state?

Getting a weird error on java appengine code that used to work fine (nothing has changed but the data in the datastore). I'm trying to iterate over the results of a query and change a few properties ...
2
votes
2answers
929 views

Maven problems using GAE and DataNucleus

I'm having trouble retrieving 2 artifacts in my Maven/Java/Google App Engine project: com.google.appengine.orm:datanucleus-appengine:jar:1.0.7.final ...
2
votes
2answers
750 views

Datanucleus/JDO Level 2 Cache on Google App Engine

Is it possible (and does it make sense) to use the JDO Level 2 Cache for the Google App Engine Datastore? First of all, why is there no documentation about this on Google's pages? Are there some ...
2
votes
1answer
844 views

example using memcache with jpa entitymanager on JGAE?

any example on using memcache/general cache with jpa entitymanager on JGAE? or the only way to do it is manually put/set memcache on service layer?
2
votes
4answers
321 views

JDO not fetching collection member field

Have a class: class Node implements Serializable { private String name; public String getName { return name; } public void setName(String val){ name = val; } public Node(){} } ...
2
votes
1answer
259 views

Transitioning from Castor to JPA

I am trying to make my java application more standards compliant and one of the biggest issues i am facing is transitioning our ORM framework from Castor JDO to a JPA implementation (thinking either ...
1
vote
1answer
43 views

Why doesn't my owned one-to-many relationship get persisted to the GAE datastore?

I have two classes defined and mapped to the GAE datastore - a Person class and a LocationStamp class, which represents a single latitude/longitude combination along with a timestamp. There is an ...
1
vote
1answer
53 views

Google App Engine JPA - ORDER BY Not Functioning as Expected

I'm having issues with retrieving data from the datastore via JPA. I have a simple class WebMessage that contains a few fields. One of the fields is a Date (java.util) field. I want to create a query ...
1
vote
1answer
31 views

Amazon S3, datanucleus, JDO and embedded objects

I have an object with embedded members that I'm making persistent without problems using RDBMS and MySQL. When I change the datastore to S3 (json plugin) I get the following exception: Dec 30, 2011 ...
1
vote
1answer
36 views

JDO handling unique constraint violations

I have what I think is a common scenario in JDO. I have a simple persistent class, say @PersistenceCapable public class Person { @PrimaryKey @Persistent(valueStrategy = ...
1
vote
1answer
61 views

How to prevent multiple RPC RunQuery calls on single JDO Query execute()?

I have configured Appstats on my Java Appengine application and noticed that a single JDO Query which returns several objects results in a separate RunQuery RPC call for every object retrieved by the ...
1
vote
1answer
45 views

Is is possible to do a batch update with JDO on Google Appengine?

I have an application on Appengine that updates multiple entities wihtin the same datastore transaction. The updates are done by calling the setters of the entities. I've set up the appstats tool to ...
1
vote
1answer
76 views

Does High Replication DB “eventually consistent” mean that detached JDO objects may not always contain updated object graph?

I have been using the Master/Slave database for previous App Engine projects but my new app is defined as High Replication Datastore (I don't believe this setting can be changed after it is defined). ...
1
vote
1answer
85 views

Datanucleus exception adding new column to hbase table

I am using DataNucleus with HBase. I had a table user. It contained 4 rows. Now I added a new column to the table. Now everytime I access any old user object which does not have this column ...

1 2 3 4