1
vote
1answer
44 views

Putting unique constraint on multiple fields

Let's say I have an entity like this: @Entity public Foo { @Id private Long id; private String name; private String type; ... } Is there a way to express that name and type ...
0
votes
1answer
32 views

OpenJPA - How to map View to Entity

I'm using WAS 8.0.0.5, which means I'm using OpenJPA 2.1.2-SNAPSHOT. I'm using the Criteria Query API and Canonical Metamodels. I need to access an Oracle View. The View has 1 column named GUID, ...
0
votes
2answers
211 views

WebSphere Application Server V8.0.0.5 JPA Unable to persist

I have a code that works perfectly on WAS 7 but fail when i run it in WAS 8.0.0.5. I am using JPA 2.0 with openJPA as my provider. Calling persist on my em throws a nested exception. Has anyone ever ...
0
votes
1answer
50 views

How to add series of keys on an Entity? Openjpa

I have this entity named product. Is there a way to add a series of multiple keys? Like A key for Serial Number, a key for Serial Number and Model, a key for Model etc. How can you do this? Thank you ...
2
votes
2answers
361 views

Getting “ org.apache.openjpa.persistence.PersistenceException: null keys not allowed” error when persist objects.

I am using OpenJPA with Eclipse to persist object. I created a simple one to one unidirectional application. But it is giving Foreign key null error. Student Entity @Entity public class Student ...
1
vote
1answer
909 views

java.lang.ClassCastException: [B cannot be cast to java.lang.String

I have written an entitity class with Field LoginId and Password. Iam encrypting the passwrd and stoiring it in the db using the AES_ENCRYPT. I want to retrive only the password which is decrypted. ...
0
votes
2answers
85 views

JPA Table Strategy

While using the JPA tablegeneration strategy , we need to mention the allocation size in the @TableGenerator. The default value is 50. We want to override the default allocation size. But the ...
2
votes
1answer
194 views

How can I use multiple Joins in JPA2 Criteria Query?

It's a dum down version of a real problem I have Three Tables STUDENT ADDRESS CLASS STUDENT ManyToOne ADDRESS STUDENT ManyToMany CLASS I need to bring all the students who have same address and go ...
1
vote
1answer
102 views

How to test Entity classes from another Eclipse project in a Stateless Session Bean within a JUnit Test

So here's what I'm trying to do and stuck at: I have a shared Eclipse Java project with @Entity (EJB 3.1) classes that is used by a couple of other Eclipse WebApp projects. This project itself has ...
0
votes
1answer
364 views

Data type for UUID as a primary key in a JPA entity class

I have a requirement to read and write records using JPA to a table in a DB2 database where the primary key is a UUID stored in a column defined as "char(16) bit for data". As the data is stored in ...
1
vote
0answers
187 views

OptimisticLockException not thrown when version has changed

I've created a simple EJB application that uses JPA for persistence and have a problem whereby optimistic locking is not functioning as I would have expected. The application contains a class named ...
0
votes
0answers
190 views

OpenJPA Merging Parent entity with multiple Lazy Child Collections having orphanRemoval=true will delete 'not-fetched' children

Given the following entity declarations: @Entity @Table(name = "parent") public class Parent{ @Column private String name; public void setName(String nm){this.name=nm;} ...
0
votes
1answer
62 views

OpenJPA: extend valuehandler for enums

I want to overwrite the enum value handler from openJpa because I want to add some custom functionality to it. Does anybody know how to do it? I cannot find a parameter where I can configure which ...
0
votes
2answers
795 views

openJPA date format

I created entity from the tables . Here is my employee entity. Class Emp{ String id, java.sql.date joinDate } As i see to_date() is not applicable in JPA, How can i persist the joined date ...
1
vote
1answer
168 views

OpenJPA Persistence Exception: negative values are not allowed for fetch size

I use OpenJPA 2.1.2 on WebSphere Application Server 8. First I used : <property name="openjpa.ConnectionUserName" value="xxx" /> <property name="openjpa.ConnectionPassword" value="yyyy" ...
1
vote
1answer
151 views

Can I use JPA annotations in a non-EE standalone environment?

I'd like to do some rapid prototyping with OpenJPA and I would like to use JPA annotations in my classes. I would like to run standalone (like from a main method). Can this be done? So far I was able ...
0
votes
0answers
204 views

wrong values when passing list as query parameter using jpa2

I'm using the criteria object for my queries. One of the parameters I am using is a list of Strings (for example [10, 11, 15]). For some reason, when the SQL query is generated, the values are now ...
0
votes
0answers
276 views

CriteriaBuilder, using FetchParent to access child class by class type

I am trying to solve a performance problem using criteria builder to fetch all relative entities using a single query. The problem I have ran into is that I have an inherited class that I wish to run ...
0
votes
2answers
1k views

No persistence providers available for

my file src / main / resources / META-INF / persistence.xml is: <?xml version="1.0" encoding="UTF-8" ?> <persistence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
156 views

Deleting and updating Many-to-Many Relationships using OpenJPA

I have a couple of entities that will be deleted. Those entities will have a couple Many-To-Many links. When updating a many-to-many link I am thinking I will just delete the original links in the ...
0
votes
1answer
176 views

Do OpenJPA and/or Hibernate support variable relationships like EclipseLink does?

I am using Felix OSGi framework, where EclipseLink dynamic weaving isn't supported, so I'd prefer to use OpenJPA (or possibly Hibernate). However, one feature I need in a couple of places is variable ...
0
votes
1answer
64 views

Avoiding duplication between main and testing persistence units

I have two persistence units with the same name, one in src/main/resources, another in src/test/resources. However, there is some information which is the same between them: list of entity classes, ...
2
votes
2answers
2k views

selecting all rows from a database using JPA in WebSphere

I am trying to implement a web service that uses open JPA to access the data layer. I am using websphere v7.0 and JPA 2.0. This service is going to get all rows out of a small db (about 6 rows and ...
2
votes
0answers
270 views

How to troubleshoot OpenJPA error - Attempt to commit a null javax.transaction.Transaction

How to troubleshoot following openjpa error. "Attempt to commit a null javax.transaction.Transaction. Some application servers set the transaction to null if a rollback occurs." I see a similar ...
0
votes
2answers
399 views

Apache OpenJPA - NamedQuery Exception

I hava two tables with a manyToMany relation : @Entity(name = "arelation") @NamedQueries({ @NamedQuery(name = "arelation.findAByName", query = "SELECT a FROM arelation a WHERE a.arelationname = ...
0
votes
1answer
214 views

OpenJPA: several @Embedded vs one @ElementCollection

I am trying to decide which annotation to use. Can you offer your opinion? What I have now: @Entity public class Balance { @Embedded private Amount amountAtm; @Embedded private ...
1
vote
1answer
451 views

Timestamp in DB and java.util.Date in Entity causes rounding issue when loaded with OpenJPA

I am loading a value from the database, which is a Timestamp datatype in IBM DB2, but needs to be mapped as java.util.Date for the JSF GUI. I thought just tell JPA it is a timestamp and it will manage ...
0
votes
2answers
519 views

Can JPA 2.0 be used without JavaEE 6?

I am using OpenJPA 2.1 (which implements JPA 2.0) for a command line utility. I am using classes that are new for JPA 2.0. My compile target is Java SE 1.6 OpenJPA 2.1 comes with all JPA 2.0 ...
2
votes
1answer
207 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 ...
3
votes
1answer
2k 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
864 views

JPA2 Lazy Child Collection with orphanRemoval=true deletes 'not-fetched' children

I have a Parent entity that owns(via mappedBy) a FetchType.LAZY Set<Child> with orphanDelete=true. A client can happily add and remove child rows via the parent's collection getter and their ...
0
votes
1answer
418 views

OpenJPA registerColumnType() equivalent

With regards to this SO question ( JPA/Hibernate DDL generation; CHAR vs. VARCHAR ), I was wondering whether there was any functional equivalent in OpenJPA 2.0.1 to this method found in Hibernate: ...
1
vote
1answer
277 views

OpenJPA forward mapping tool order column specification during table creation

We've set the following property in persistence.xml: <property name="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)"/> If I understand correctly, this is what tells ...
3
votes
1answer
828 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 ...
2
votes
1answer
1k views

Unable to generate JPA entities from HSQLDB

I am using OpenJPA and HSQLDB for my current project. But I am unable to generate JPA entities from the HSQLDB because eclipse plugin is not giving me an option to select the schema. Does anybody ...
1
vote
1answer
631 views

JPA 2 with managed transactions not persisting object

I'm using the OpenJPA implementation of JPA 2 and am having problems persisting an object to the database. I want to use transactions managed by the container (Websphere), so my understanding is that, ...
2
votes
1answer
788 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 ...
1
vote
1answer
973 views

OpenJPA: Can the target of a ManyToOne relation be an @Embedded field?

I am trying to use a ManyToOne relation where the foreign key links to an @Embedded field in the target class. This compiles and enhances fine, but when running this code, OpenJPA will complain with ...
2
votes
1answer
3k views

Maven archetypes for OpenJPA

Greetings. I'm just starting to explore Maven and I use m2eclipse as to use Maven in Eclipse. I found that there is a hibernate-based archetype with Group Id: com.rfc.maven.archetypes and Artifact ...
0
votes
2answers
3k views

Attempt to cast instance to PersistenceCapable failed. Ensure that it's been enhanced

I'm trying out OpenJPA 2.0.1 for the first time, and am getting: 79 WARN [main] openjpa.Runtime - The configuration property named "openjpa.Id" was not recognized and will be ignored, although the ...
1
vote
1answer
579 views

How to inject custom object ids into JPA entities

I am using JPA 2 for an enterprise application, and my DBA's just hit me with a twist. They want me to use the group's centralized object ID generator for all my tables. This means rather than using ...
1
vote
1answer
7k views

select from two tables using JPQL

I'm using JPQL to retrieve data. I can get data using the statement List persons = null; persons = em.createQuery("select p.albumName from PhotoAlbum p , Roleuser r where r = p.userId and r.userID = ...