Tagged Questions
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
1answer
2k views
Best approach for Java/Maven/JPA/Hibernate build with multiple database vendor support?
I have an enterprise application that uses a single database, but the application needs to support mysql, oracle, and sql*server as installation options. To try to remain portable we are using JPA ...
1
vote
1answer
118 views
Is it possible to generate a default value for a certain database column using hbm2ddl
Env: JPA 1, Hibernate 3.3.x, MySQL 5.x
We auto generate database schema using hbm2ddl export operation. Would it be possible to generate a default value for a certain @Entity member during SQL ...
1
vote
1answer
242 views
How to disable sql creation for JPA entity classes
We have some JPA entity classes which are currently under development and wouldn't want them as part of the testing cycle. We tried commenting out the relevant entity classes in ...
1
vote
2answers
249 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 ...
1
vote
1answer
665 views
Passing parameter to hbm2ddl
I have parametrized persistence.xml. I am trying to generate ddl schema using hbm2ddl. How can i pass parameters to this tool ?
My persistence.xml looks like
<property ...
1
vote
1answer
546 views
hbm2ddl on a column based on GenericEnumUserType
The following JPA column definition generates an "integer" data type by default on all databases (e.g. h2, mysql, postgres)
@Column(name = "type", nullable = false)
@Type(type = ...
0
votes
2answers
183 views
org.hibernate.MappingException: Unable to find column with logical name
hi my tables are as follows:
1- medical_company:
medical_company_id foreign key on account_entity table account_entity_id column (not a pk)
column1
column2
column3
2- account_entity:
...
0
votes
1answer
38 views
How do I specify integers to be of a certain length via a JPA annotation
create table foo (id INT(10) not null ...)
Instead of declaring id as "INTEGER", I would like to specify a length restriction as mentioned above.
I use
@Entity
class Foo {
@Id
...
0
votes
1answer
135 views
How to skip the schema generation of a superclass table? Java/JPA/Hibernate/Annotations/Maven/hbm2ddl
Our application has a need to share an existing database table with another locally running application, and, so, I wish to refer to this table but skip generating the DDL for it. I also hoped to ...
0
votes
1answer
171 views
Hibernate HBM2DDL produces nullable field for primary foreign key?
I'm using hbm2ddl (from the hibernate3-maven-plugin 2.2) to produce a DDL based on my JPA annotated entities. Normally, this works fine but I recently introduced an entity that uses a composite key ...
0
votes
2answers
265 views
Generate Creation Script for all Tables related to ONE JPA Entity Class
i want to generate the Create Table Script for a specific entity Class.
I can auto-generate the complete Script for all of my classes with hibernate (hbm2dll tool) ( Auto generate data schema from ...
0
votes
1answer
83 views
Column without member
Using Hibernate we're trying to have it create an additional column to an abstract class - but we can't add a new member to this class (memory consumption in large scale). We need to have Hibernate ...
0
votes
1answer
624 views
constraint problems using apache derby and hbm2ddl
We are using Apache Derby 10.5.3.0_1 and hbm2ddl with Hibernate 3.3.x
I get the following constraints error while pre-loading the SQL on an embedded derby database. If I remove the primary key(id) ...