Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
213 views

Is it possible to share configuration from persistence.xml?

I have one persistence unit configured in my persistence.xml but i have two databases. Those databases are identical, regarding the schema. What i am trying to do is: ...
3
votes
1answer
2k views

How can I merge / extend persistence units from different JARs?

I use JPA persistence for my data models with Eclipselink as the persistence provider. I have a modular (OSGi) application and one of the modules contains the standard data model and a persistence ...
2
votes
1answer
65 views

WLS 10.3.4 - No persistence unit named 'xxx' is available in scope xxx_EJB.jar. Available persistence units: []

i have enterprise application project with 4 modules. it is deploy on WLS 10.3.4. i'm using eclipse helios for development with oracle web tools for eclipse. local WLS on my machine is installed as ...
2
votes
1answer
881 views

Hibernate 4 (Jboss as 7) can't auto detect entity and insert into PersistenceUnit, cause `unknow entity` exception

I meet a similar problem with this How to auto-register entities with JPA/Hibernate: Unknown entity . I am using jboss as 7, hibernate 4( which come along with jboss as 7), spring 3.0.5 . I annotate ...
2
votes
1answer
482 views

Multiple JPA persistence units pointing to same database?

Can we have more than one JPA persistence units pointing to same database, in different Java projects and deployed on the server at the same time? By same time I mean, not deployed at the same second ...
2
votes
2answers
762 views

How to bind an entity to a specific persistence-unit

In a web application using struts2 ejb hibernate, is it possible to tell the application to find or create an entity for a specific persistence-unit name, which is written in persistence.xml file, in ...
2
votes
2answers
4k views

EJB3 - using 2 persistence units within a transaction (Exception: Local transaction already has 1 non-XA Resource)

I am trying to use 2 persistence units within the same transaction in a JEE application deployed on Glassfish. The 2 persistence units are defined in persistence.xml, as follows: ...
2
votes
2answers
4k views

How to execute differnet import.sql in Hibernate/JPA for each persistence unit?

I have configured two persistence units in my JPA/Hibernate configuration. Now i need to execute different import.sql for each persistence unit. How can I specify which import.sql should be executed ...
1
vote
2answers
1k views

JPA default persistence unit

I get exception "There is no default persistence unit in this deployment." can I somehow mark unit as default?(I have only one persistence unit, so Id rather not call it by name)
0
votes
0answers
13 views

netbeans 7 wont compile java ee project

After creating a java enterprise project in netbeans 7, java files compile into the classes folder and into the jar. However after adding a persistence unit, these are no longer compiled. A jar with ...
0
votes
1answer
82 views

@PersistenceUnit does not work in PlayFramework?

DB Config: db=mysql://root@localhost/db jpa.dialect=org.hibernate.dialect.MySQLDialect .... db_other.url=jdbc:mysql://localhost/db2 db_other.driver=com.mysql.jdbc.Driver db_other.user=root ...
0
votes
0answers
23 views

Why two different Client session of Java webapplication served by Glassfish and using Ejb Jpa and a unique DataBase cannot see the same data

Before begining i would ask you to excuse my bad english i'm a ivorian i speak french. I'm working on a java web (J2EE) application served by Glassfish. With Netbeans tools i created a enterprise ...
0
votes
1answer
115 views

Load persistence unit with vfsfile (exploded JAR) on JBoss 5.1/Hibernate 3.3.2

I am looking for help to fix a problem to appeared when migrating from JBoss4 to JBoss5. There seems to be an issue with Hibernate support for VFS (introduced in JBoss5). For modularity reason, ...
0
votes
1answer
111 views

Create parameterized Persistence Unit + JTA DataSource at Runtime (context dependent)

i'm trying to write an EJB3 Stateless Session Bean which gets the parameter "customerCode" (String). Dependent on this "customerCode" i want to create an EntityManager ...
0
votes
2answers
109 views

solving a exception in jonas As 5.2.1 deployment

I am newbie in develloping with JOnAs platform, also in Spring and more genrally in web devellopments. After having somte troubles with JBoss 5.1.GA and tomcat 6.x,7.x i decided to move to jonas. I ...
0
votes
1answer
43 views

What is Best way to use JPA in WEBSERVICES?

i am creating a web service using 3rd party wsdl that helps me in getting a kind of notification. now i have to save that notification in DB and perform several other operations related to DataBase. ...
0
votes
1answer
235 views

Using different datasources for persistence units in Spring

Ok, I' new to this. What I want to do is say "these classes are persisted over here (database a), and these classes over there (database b)". I think I'm supposed to define the classes explicitly ...
0
votes
1answer
137 views

My persistence Unit is pinning to the fjords, when used for a remote connection

While i does manage to connect to my database through the "Services" netbeans tab, my application persistent unit seems to not be working... It just seems to go in an endless "Wait some more, maybe ...
0
votes
3answers
385 views

Glassfish Deployment out of Eclipse Helios SR2 fails

I experience a strange Exception which occurs when I try to deploy my Java EE application out of the latest Eclipse version (Helios SR2 with the Glassfish adapter version 1.7.1) to the latest ...
0
votes
1answer
147 views

How can I manage to use 2 persistense units and make my app to recognize which to use?

I hava a JavaEE/ EJB3 application in which I'll need to connect diferent databases. It's on JBOSS 5.10GA. After I tried to deploy it I got the following error: 09:04:57,921 ERROR ...
0
votes
2answers
499 views

Seam - Multiple Persistence Units

Does Seam support multiple persistence units in its configuration? Also, when would you want to have or need multiple persistence units? I am working on a generic component and right now, it only ...
0
votes
2answers
249 views

use of EntityManagerFactory causing duplicate primary key exceptions

Hey guys, my goal is create an EntityManager using properties dependent on which database is in use. I've seen something like this done in all my Google searches(I made the code more basic for the ...