Tagged Questions
3
votes
1answer
218 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
86 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
1k 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
496 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
820 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
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
1answer
104 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
2answers
128 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
46 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
280 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
2answers
258 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 ...