Tagged Questions
1
vote
2answers
993 views
Generating entities with Hibernate, Tomcat 6, JEE5
I'm trying to generate a database created from entities. I'm using Hibernate, PostgreSQL, Tomcat6 and Eclipse for development.
Here's what one of the entities look like:
package pass.entities;
...
0
votes
5answers
925 views
Which are the differences/similarities between hibernate and other frameworks or specifications?
I want to know the differences/similarities between Hibernate and simple persistence in Java EE 5?
I'm not clear if Hibernate implements Java EE 5 persistence implementation or if it is a totally ...
2
votes
1answer
128 views
Configurable persistence in Java EE5+
There are 2 ways of using a persistence unit, code or annotation.
CODE
[..]EntityManagerFactory emf;
emf = Persistence.createEntityManagerFactory("SOMEPU");[..]
or
ANNOTATION
[..]
...
1
vote
1answer
6k views
EJB3 and manual hierarchy persistence
I have a legacy database, which I am using EJB3 to model. The database is in quite a poor shape, and we have certain unusual restrictions on how we insert into the DB. Now I want to model the database ...