Tagged Questions

OpenJPA is an open source implementation of the Java Persistence API specification. It is an object-relational mapping (ORM) solution for the Java language, which simplifies storing objects in databases. It is open source software distributed under the Apache 2.0 Licence.

learn more… | top users | synonyms

11
votes
3answers
8k views

JPA Implementations - Which one is the best to use?

I have made use of the following JPA implementations: Hibernate, Toplink, OpenJPA Each of them has their own strengths and weaknesses. I found Hibernate the most advanced of the three except that ...
6
votes
2answers
639 views

Can JPA return results as a map?

We are currently build a map manually based on the two fields a named query returns, because JPA only provides a getResultList(). @NamedQuery{name="myQuery",query="select c.name, c.number from Client ...
4
votes
1answer
75 views

The id of an object retrieved by JPA is missing

I have a simple object with an integer id field as followings: @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(unique = true, nullable = false) private int id; Objects can be ...
4
votes
1answer
94 views

How to deal with locks (JPA)?

According to the Java Persistent/Locking wikibooks*, the best way to deal with locks is to report the Optimistic Lock Error/Exception to the user. The problem is that it's not scalable. Suppose that ...
4
votes
3answers
267 views

Libraries for hash partitioning/Sharding with JPA

My department has decided move to hash partitioning/sharding for some of our large Oracle databases. We will be splitting our entities across different schemas. I've been tasked to do a spike to ...
4
votes
3answers
502 views

Can we assign custom Query Hints to JPA NamedQueries

We are required to append query numbers to each and every query our application executes. EX: SELECT * FROM ... WHERE ... QUERYNO 123456; OpenJPA supports query hints, but only for specific hints ...
3
votes
1answer
81 views

JPA Unit testing - Query returning more entities than were ever persisted

I have written a bunch of entities. I am trying to test them now. I was having problems with an entity very similar to this, but all of a sudden the problem went away when I cleaned the build. Then I ...
3
votes
1answer
81 views

OpenJPA Transactions - Single or Multiple Entity managers?

I have a DBManager singleton that ensures instantiation of a single EntityManagerFactory. I'm debating on the use of single or multiple EntityManager though, because a only single transaction is ...
3
votes
1answer
113 views

How to determine the number for FetchBatchSize in OpenJPA?

OpenJPA provided some parameter in the FetchPlan. (http://openjpa.apache.org/builds/1.2.0/apidocs/org/apache/openjpa/persistence/FetchPlan.html) And I was stuck in one of them, the FetchBatchSize. ...
3
votes
1answer
347 views

How to disable caching in OpenJPA 2.0.1 (edit: Issues with BoneCP)

I'm unable to disable caching in OpenJPA 2.0.1. I have set the following properties in my persistence.xml: <property name="openjpa.DataCache" value="false"/> <property ...
3
votes
2answers
320 views

Autocommit OpenJPA writes

I'm using OpenJPA and want to configure it to use Autocommit on every write/insert operation. At the moment I have to do this: MyEntity e = new MyEntity(); ...
3
votes
4answers
414 views

Using enum as id

Using JPA, can we define an enum as id of an entity? I've tried the following: public enum AssetType { .... } @Entity @IdClass(AssetType.class) public class Adkeys { private AssetType type; ...
3
votes
1answer
163 views

OpenJPA & MySQL persist wrong encoded characters

my mysql db has character encoding utf8. In QueryBrowser i can see special characters are correct. In appplication using openjpa i can see the same values also correct. But when I persist object into ...
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

Am I supposed to call EntityManager.clear() often to avoid memory leaks?

I'm new to JPA/OpenJPA and I noticed that if I don't call EntityManager.clear() after i persist entities I get an OutOfMemoryError (I keep adding new entities in a loop). I'm not sure if this is the ...
2
votes
2answers
76 views

OpenJPA: Code to build entities automatically from DB

Hi I'm looking for a code/tool to generate entities automatically. I'm not looking for a software like eclipselink which has to be executed manually, but rather a piece of code (or a maven plugin) ...
2
votes
1answer
50 views

Merging tree-like structure in OpenJPA?

I am trying to build a composite tree-like structure using OpenJPA 2.1 consisting of these classes: Criterion - base, abstract class, SingleCriterion - actual tree leaf, CompositeCriterion - actual ...
2
votes
1answer
96 views

Joined tables is not getting created in JPA?

SOLUTION : I have figured out a work around for this problem. I ran my main class using a shell script and I also enhanced all my classes using the same shell script here is the code. #!/bin/sh # # ...
2
votes
2answers
83 views

PersistenceException when running SynchronizeMappings [closed]

I have eclipse java project using apache openJPA. Has eclipse got some kind of cache need to be clean? I had one class , UsaState ...mapped to USA_STATE table. I have removed it from database, from ...
2
votes
1answer
119 views

How to force OpenJPA (1.2.2) to eager load a @ManyToOne combined primary key?

i've got two Entities with combinded primarky keys: @Entity @IdClass(APK.class) public class A { @Id Integer pk1; @Id Integer pk2; @OneToMany(cascade = CascadeType.ALL, ...
2
votes
1answer
588 views

websphere 7 and (application based) open-jpa 2

I want to not use the built in Websphere 7 jpa plugin, instead use an application WEB-INF/lib/open-jpa 2 and a proprietary persistence provider. I cannot install the OSGI and JPA 2 feature pack for ...
2
votes
2answers
140 views

Why there are “too many connections” in JPA?

This is my code (it's JAX-RS + JPA): @Path("/") public class Foo { private static final EntityManagerFactory FACTORY = Persistence.createEntityManagerFactory("foo"); @POST public void ...
2
votes
1answer
271 views

Does OpenJPA work well with Glassfish?

Is anyone successfully using OpenJPA with Glassfish? I'm trying to use OpenJPA 2.1 with Glassfish 3.1 Open Source. I've followed the instructions to integrate the two here -> ...
2
votes
1answer
396 views

org.apache.openjpa.lib.jdbc.ReportingSQLException, MySQL, OpenJPA, Geronimo

Can anyone explain why I'm getting this error (full stack trace below): Caused by: org.apache.openjpa.lib.jdbc.ReportingSQLException: You have an error in your SQL syntax; check the manual that ...
2
votes
2answers
194 views

OpenJPA dirty read hint

We've got the following DAO stack: DB2 9.7 Express-C OpenJPA 2.0.1 Spring 3.0.5 Bitronix 2.1.1 How do you specify OpenJPA to add WITH UR sql clause to the end of the query? I'd browsed sites and ...
2
votes
1answer
387 views

Enhancing openJPA classes in Eclipse

I'm trying to enhance openJPA classes by this guide: enhancement-with-eclipse.html For some reason the same setup works in Windows but gives this problem in Ubuntu. Does anyone see what I'm doing ...
2
votes
1answer
347 views

Error when creating EntityManager in JPA2

I'm trying to create a simple JPA2 app that persists something to a database using the OpenJPA implementation. I'm running Derby and using the default Embedded JDBC Driver. I've been scratching my ...
2
votes
1answer
257 views

InvalidStateException while trying to enter data into DB

I have a method that return the entity manager for particular DB.Now when i use the method for the first time to get entity manager everything works fine.I can save data into any tables A,B,C using ...
2
votes
1answer
241 views

how to enable sql log in openjpa?

I have proram written using java,jps.Now i can see logs on cosole as folllows: INSERT INTO XYZ (a,b,c) VALUES (?, ?, ?) [org.apache.openjpa.jdbc.kernel.JDBCStoreManager$CancelPreparedStatement] I ...
2
votes
3answers
778 views

Open JPA - column definition binary

I'm trying to set the type of a column in OpenJPA as binary(5) so I'm using the following declaration: @Column(name="MY_FIELD", columnDefinition="BINARY(5)") public byte[] getMyField() { return ...
2
votes
2answers
865 views

problem with using JPA

I am getting following exception while i try to execute simple jpa code. What may be the casue? 5453 DevPQRWDPBSSPersist WARN [P=351601:O=0:CT] openjpa.Enhance - This configuration disallows ...
2
votes
3answers
535 views

Persisting deep object graph with JPA without em.flush()

I have following model: Report, ReportSection and ReportSectionProperty. Report has zero to many ReportSections, ReportSection has zero to many ReportSectionPropert-ies. This would qualifie as three ...
2
votes
1answer
1k views

Openjpa maven plugin error

Update 3: Addes following code to the pom so openjpa could find the persistence.xml file. Got some query errors left but I finally got openjpa to work :). <resources> <resource> ...
2
votes
1answer
4k views

IBM Websphere JPA configuration - how to update persistence.xml

I'm new to EJB 3 and the JPA. I've created a datasource in the appserver which is jdbc/AppDataSource. The default persistence provider is left as ...
2
votes
2answers
165 views

Is there any JPA fluent API / Critera api for JPA 1.0? I'm using OpenJPA

Is there any jpa 1.0 fluent api/interface for query building? I'm using openjpa 1.x, so I'm stuck with JPA1. I found QueryByProxy, but its maven repo is not working properly.
2
votes
5answers
668 views

how openjpa2.0 enhances entities at runtime?

Below is my test code: package jee.jpa2; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.EntityTransaction; ...
2
votes
2answers
5k views

JPA/Hibernate bulk(batch) insert

Here is simple example I've created after reading several topics about jpa bulk inserts, I have 2 persistent objects User, and Site. One user could have many site, so we have one to many relations ...
2
votes
3answers
428 views

How to find out efficiently the auto-generated id for a new object when using JPA?

I have an attribute which is annotated with @Id. The ID is going to be generated automatically when persisting the object. That means that the ID-value is not defined before I persist the object. ...
2
votes
1answer
117 views

Beginner question: basic insertion idiom for JPA?

My "HelloJPA" code (below) tries to store an Employee in a datastore. However, any attempt to read the persisted object after committing the (resource local) transaction is rewarded with an ...
2
votes
2answers
4k views

openJPA on Java SE

I try to develop JPA project on ibm RAD. And i can run it on Webpshere successfully, but the problem is my machine is quite old. So deploying in JEE container isn't reasonable.And i want to run it on ...
2
votes
1answer
2k views

how do I change persistence.xml at run time

I am new to openJPA. I have a scenario where, depending upon the server where my application is running, I need to change the settings to persistance.xml. For eg. if its running on Server A, then it ...
1
vote
1answer
12 views

How do I reference the -s flag for javac in an ant script?

I am trying to compile the canonical metamodel classes for some JPA entities using an ant script. I am using OpenJPA. I would like the generated files to be located in a subdirectory which, ...
1
vote
1answer
45 views

Can two entities in JPA have more than one relationship between them?

let me define the following entities for example: @Entity public class Box{ @ManyToOne Apple apple; @ManyToOne Orange orange; } @Entity public class Apple { @OneToMany ...
1
vote
1answer
67 views

JPA: Map invalid database values to enums

In my datamodel a have many entities where attributes are mapped to enumerations like this: @Enumerated(EnumType.STRING) private MySpecialEnum enumValue; MySpecialEnum defines some fixed values. ...
1
vote
1answer
23 views

OpenJPA cache vs ehcache plugin

openjpa comes with its own cache implementation. But it will also easily integrate with ehcache and other third-party cache providers. What are the main advantages of using ehcache vs OpenJPA's ...
1
vote
1answer
70 views

jpa lazy fetch entities over multiple levels with criteria api

I am using JPA2 with it's Criteria API to select my entities from the database. The implementation is OpenJPA on WebSphere Application Server. All my entities are modeled with Fetchtype=Lazy. I ...
1
vote
1answer
41 views

ClassCastException with OpenJPA in Jboss 6.0

Jboss 6 comes with JPA 2.0 (hibernate-jpa-2.0-api.jar) and Hibernate 3.6.6 as the implementation. I have a web application that has OpenJPA 2.0 library (openjpa-all-2.1.0.jar). I have set the ...
1
vote
0answers
129 views

JPA Entity Manager closed by Websphere Container Managed Transaction

Our application use IBM WAS6.1 container with EJB3.0 feature pack. Transactions are container managed via EJB3.0 transactions started from ejb service bean. We use Spring for DI. There are 3 layers. ...
1
vote
1answer
50 views

persistent 2D boolean array in JPA (openJPA)

I am writing an entity that has a tree like data structure. I am using embeddable objects as the nodes. These embeddable nodes must carry a 2D boolean array. can I just do something like this: ...
1
vote
1answer
57 views

OpenJPA logging with slf4j on WebSphere

My JEE6 application uses slf4j with logback as logging framework. Now I want to add the SQL traces of OpenJpa to my log files. The OpenJpa-Documentation says, I can use a parameter to this: ...

1 2 3 4