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: ...
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
822 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 ...
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
1answer
135 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
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 ...