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

0
votes
0answers
29 views

OpenJPA with Spring: how to integrate persistence.xml into applicationContext.xml?

Current application running on SpringMVC3+OpenJPA2.2 What we trying to achieve, is that can make schema name in persistence.xml can be defined by external properties file. Seems not quite doable ...
0
votes
0answers
22 views

OpenJPA ClassCastException : org.apache.openjpa.util.IntId incompatible with my domain object

I get a class cast exception when executing a select query using Open JPA. I am using Websphere v8.5. The strangeness is when the table has just one record the query seems to work fine, if there are ...
0
votes
1answer
25 views

IllegalStateException while using UserTransaction (Java EE)

I am trying to make my first Java Enterprise Application and use UserTransactions. Therefore I use JNDI Lookup with java:comp/UserTransaction to get my UserTransaction Object. public void ...
6
votes
1answer
166 views

Getting “java.lang.UnsupportedOperationException:”

I created the small JPA project to persist a Student record. I use Oracle database. I use the OpenJPA as the JPa provider. I have created the Table student and relevant sequences correctly. Student ...
0
votes
0answers
12 views

OpenJPA Indirect Relation Entity Query

I'm trying to do a query that basically would do this with OpenJPA: SELECT * FROM T_CURRENT c INNER JOIN T_CURRENCY AS cr ON (c.currencyid = cr.currencyid) INNER JOIN T_FEE_CURRENT AS f ON ...
0
votes
0answers
13 views

OpenJPA: get the last data inserted

I am using OpenJPA to persist my database. I have one table with primary key as ID. This key is used as foreign key in another table. Using EntityManager.persist I am able to insert data in 1st table. ...
1
vote
1answer
31 views

Column order on OpenJPA

Is there a way to get the columns in the order they are declared in the Java class, or to specify the order in some other way? I'm using the mapping tool ant task to generate the DDL for my classes ...
0
votes
1answer
34 views

OpenJPA inserting into one table data from another table

I am new to OpenJPA I am trying to insert data into a table some of which comes from another table. Below is the scenario. Table1: id, app_name, app_version, app_active Table2: id, app_name, ...
0
votes
0answers
11 views

Invalid cursor name in openjpa 2.2.1 in whebsphere 8.0.0?

I am getting Invalid cursor name error in openjpa with websphere 8.0.0, but it is working fine in websphere version 7.0. I had set resultSetHoldability is 1 also, but still I am getting same error. ...
0
votes
0answers
36 views

OpenJPA, OSGI, and FieldStrategy

I am currently trying to implement a FieldStrategy on my id field but when I go to persist the object the @Strategy annotation I have defined is ignored. I am trying to implement this because our ...
-1
votes
1answer
64 views

JPA child doesn't persist when parent persist method is called

This child entity is not persisted along with the parent when em.persist is called @Entity @Table(name="Z_PARENT") public class Parent { @Id @TableGenerator(name="parentIDGen", ...
0
votes
1answer
42 views

setFirstResult and setMaxResult doesn't work well with Order By

What could cause the CriteriaQuery orderBy method stop working? Here are the implementations: OpenJPAEntityManager kem = OpenJPAPersistence.cast(entityManager()); ...
0
votes
1answer
58 views

OpenJPA Enhance — The identity field defined in the {0} Embeddable is not supported

I am using the following JPA code with MySQL DB and OpenJPA 2.2.2: @MappedSuperclass public abstract class IdentifiableEntity implements Serializable { @Id @GeneratedValue(strategy = ...
-1
votes
0answers
17 views

JPA fetching nested entity without use of CascadeType.REFRESH

At this link: http://www.objectdb.com/java/jpa/entity/fields they explain: Instead, employees is automatically populated when a Department entity is retrieved from the database. How is this ...
0
votes
0answers
23 views

JPA updating Embeddable entities implicitly

I have an Embeddable JPA entity (X) with 2 fields. Now both B and C which are JPA entities are having a reference to (X) with the @Embedded annotation. Furthermore A has a reference to B and B has a ...
0
votes
0answers
43 views

Exception calling spring data jpa query method with suffix “IN” against primitive type on openjpa

I have the following jpa data query method: findByEntityIdIn(List<Long> entities); And on my persistent object I have a long type persisent field called "entityId". When I call this method ...
0
votes
0answers
19 views

OpenJPA getSingleResult weirdness

A have two entities: Report and ReportSection bound by OneToMany relation. Usually, each report contains more than one sections. I use OpenJPA 2.2.1 and recently I started encountering an error when ...
0
votes
1answer
46 views

@OrderBy annotation cannot order by sub relation

If There is a relation like this: entity A (one) ---> (many) entity B (one)---->(one) entity C And current JPA entity A has following relation definition: @OneToMany(mappedBy = "A", fetch = ...
1
vote
1answer
151 views

Entity not persisting via Spring(CrudRepository) on TomEE

I have issues trying to persist an Entity to a PostgreSQL Database using Springs CrudRepository interface. I have had quite some issues setting this up with the correct values both on TomEE and ...
1
vote
1answer
130 views

problems deploying project in Worklight 5.0.6

Running Worklight 5.0.6 on Tomcat 7 with MySQL 5.6 I dropped all the previous databases and let the Install Manager recreate them. The console runs fine and I am able to upload the wlapp and ...
0
votes
1answer
37 views

How to switch from Hibernate to OpenJpa

I've an Hibernate project developed with Spring MVC 3 and built with Maven 3. I manage persistence with JPA in particular Hibernate Framework; I guess that isn't so difficult to configure my existing ...
0
votes
2answers
55 views

Migrating from Hibernate to OpenJPA - OneToMany aren't fetched

I try to migrate an application from Hibernate to OpenJPA and "suddenly" the @OneToMany relations aren't fetched anymore. The situation can be summarised as follows: I have two Entities Member and ...
0
votes
0answers
43 views

Where can I find OpenJpa 2 with Spring and Maven3 integration?

could you give me links of some working and decent example of projects developed with maven, Spring MVC framework using OpenJpa 2 for data Persistence, I've looked for hours and studied all examples, ...
1
vote
1answer
51 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
0answers
34 views

OpenJPA using identical property bean class for multiple sql tables

(edit: read to end of this post, I've found one solution. Im still open to see how you solved this problem) I have this SQL schema and *primary keys, simplified example. server(*id, name, enabled, ...
0
votes
0answers
23 views

what is right place to close entitymanager? (openjpa)

i dont know where exactly inside my code should i close entitymanager, by logic i think it should be when i logout? i'm using entitymanager factory. private static EntityManager entityManager = ...
0
votes
1answer
47 views

openjpa: illegal argument exception for value object

there is a NamedQuery like this: @NamedQuery(name = "getOpakOdeslaniForPartner", query = "select new com.vo.OpakOdeslaniVO(opak.pocetPokusu, opak.idSekvenceOpakovani.idOpakSekvence, ...
0
votes
1answer
47 views

Openjpa mappedsuperclass in a separate jar

We are trying to build some services with entities that have common fields between them. To handle this the approach we have taken is to define a base class with all the common fields and extend all ...
0
votes
1answer
198 views

OpenJPA: A JDBC Driver or DataSource class name must be specified in the ConnectionDriverName property

I am getting above exception when trying to do a simple example using openjpa. Here I am using a custom persistance provider class. Following is my persistence.xml file. I went through the previous ...
0
votes
0answers
46 views

OpenJPA 2.2.0: Cannot add a custom persistence provider class : OpenJPA recognizes it as unknown provider

I am trying to create a custom persistence provider class instead of openjpa.PersistenceProviderImpl. Hence I added MyProvider class to the persistence.xml. But it gives a warning log as INFO: ...
0
votes
1answer
39 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
63 views

Is there a way to override javax.persistence.EntityManager.persist() method in openjpa

I want to intercept the JPA calls (without touching entity classes) and hence need $subject? Has anybody tried something similar.
0
votes
0answers
76 views

No persistence providers available for “testDB” Exception occurred at javax.persistence.Persistence.createEntityManagerFactory(persistenceUnitName)

Let me brief what am I trying to achieve. I want to override the method EntityManager.persist() which is used in apache JUDDI for one of my requirements. Hence I thought of overriding the default ...
0
votes
0answers
57 views

Add a custom persistent provider to open jpa

I want to know how to edit persistent.xml and add custom persistent provider . How can i add custom persistent provider.
0
votes
0answers
56 views

Example on how to write OpenJPA interceptor

Does anyone knows any sample/links on how to write a JPA interceptor for OpenJPA. I googled but could not find a proper sample on how to do so.
0
votes
0answers
62 views

Call to JPA (OpenJPA) within remote EJB fails the first time after deploy of application

I'm having a strange problem in our EJBs that are running on a Glassfish 3.1 using OpenJPA. Firste there's our Enterprise-Application 'businessBeans' that handles all the JPA/Entity-Stuff. It offers ...
0
votes
0answers
40 views

org.apache.openjpa.lib.jdbc.ReportingSQLException: cannot modify 'dbo.vista_procesos' because it is not a table

im using JSF2 to create a web app, i made a view in my database (SQL server), and generated a persistence mapping of it in intellij idea , i also created my DAO class to get the data from de view and ...
0
votes
1answer
129 views

slf4j don't work in JBOSS when using openJpa module

My EAR application runs fine when i don't use openJpa. Once i use open JPA i get the "SLF4J fail to load class blaaa ". How to configure the openJpa module to use the SL4J which i provide from pom.xml ...
0
votes
1answer
92 views

JPA Query with openJPA only works as 'native' SQL, but it does not when transformed as JPQL or with JPA Criteria

I have a SQL query and the mapping of the classes. Using openJPA, if the query is made as a @NamedNativeQuery it works fine, returning the correspondent class and the expected result. If it is ...
0
votes
0answers
20 views

Multiple datsources for an enterprise application

We have a DB intensive enterprise application with multiple WAR modules packages as part of the single EAR application. Off-late we are running into many connection problems with requests timing out ...
0
votes
0answers
82 views

JPA : Probem with mapping two fields of entity to a single column in the database

Class EmployeeEntity{ @Column(name = "DEPT_ID_COLUMN") private long deptId; @ManyToOne @JoinColumn(name="DEPT_ID_COLUMN", insertable = false, updatable = false) private ...
0
votes
1answer
30 views

OpenJPA logs in app server console - method printToSystemOut

We are using OpenJPA in our application and we are getting the below error trace logs in the application server console. at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) ...
1
vote
2answers
73 views

JPQL query: use ORDER BY case insensitively

Using this thread (which is very helpful) so I do the same to may jpql query(very simple, just select all record but need to sorted by 'NAME' field): SELECT o, LOWER(o.name) AS nameInOrder FROM ...
-1
votes
1answer
28 views

The method getLong() is undefined for the type Query

when i was coding in JPA , i found this error saying "The method getLong() is undefined for the type Query" please help me out wit resolving this . public long getErrorid(String errDesc) {long ...
1
vote
1answer
86 views

intellij idea, generating persistence mapping with relationships

i have my sql server database and i used "generate persistence mapping" in intellij to get my java classes, but the relationships defined on my sql server database were not mapped, it seems i can add ...
1
vote
0answers
88 views

JPA assign ID to child entity before flush

I have a parent entity which is responsible for creating child entities (unidirectional, one-to-many) that it solely owns. In DDD terms, it is the aggregate root. When I create a new child entity from ...
1
vote
2answers
319 views

How to create the JPA OSGI bundle

I want to create the OSGI persistence service bundle with JPA 2.0. I am using OpenJpa as a persistence provider. I tried a sample OSGI bundle with JPA support and I faced the problem when my client ...
0
votes
2answers
249 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
0answers
36 views

Is possible to restrict the view of the user by using customized tag parameters on the metadata?

I'm working with a web application that allows the user to modify the parameters in the database. My application is a java application that is using EJB3.1 , openJPA and JSF. The task I want to ...
1
vote
0answers
171 views

OpenJPA SynchronizeMappings in persistence.xml only to the managed tables

I have read many tutorials about the SynchronizeMappings options in persistence.xml. The configuration I have concluded is this one: <property name="openjpa.jdbc.SynchronizeMappings" ...

1 2 3 4 5 10