Tagged Questions
4
votes
3answers
4k views
How to creata database Schema using Hibernate
After reading Hibernate: hbm2ddl.auto=update in production? some questions arose.
First of all, the reason for I'm using Hibernate is to be database vendor independent (no need to write 10 versions ...
1
vote
1answer
390 views
HBM2DDL — Create a database view instead of a Table?
All,
Is there some setting that I can tell hbm2ddl to run a view creation statement instead of create a table when generating the database schema?
I'm creating my database schema using the ...
1
vote
2answers
258 views
How to reserve a set of primary key identifiers for preloading bootstrap data
We would like to reserve a set of primary key identifiers for all tables (e.g. 1-1000) so that we can bootstrap the system with pre-loaded system data.
All our JPA entity classes have the following ...
0
votes
1answer
175 views
Does hbm2ddl.auto=update not honor different DB users, maybe?
We are encountering strange hibernate behavior with hbm2ddl.auto set to update.
In our test setup, we have two database users, one containing the tables for our beta application, the other one is ...
0
votes
1answer
2k views
Db migrate - Hibernate/JPA - hbm2ddl - diff tools
I use:
EJB3 / JPA (Hibernate)
MySQL 5
I have to set up a system to help database migrations. Tried to use LiquiBase but it seems not enough mature yet to be used with Hibernate.
What I would like ...