vote up 2 vote down star

I am using the Hibernate Tools ant task to generate DDL from JPA annotated entities. With hibernate annotations you can name the foreign key using

@JoinColumn(name = "foo")
@org.hibernate.annotations.ForeignKey(name = "fk_foo")

Is there a pure JPA way of achiving the same?

flag

50% accept rate
Thanks for your answers. – NA Jul 7 at 20:57

2 Answers

vote up 1 vote down check

No. JDO is the only persistence specification allowing definition of FK names, onUpdate/onDelete actions etc. JPA (even in JPA2) simply doesn't go there.

--Andy (DataNucleus)

link|flag
vote up 1 vote down

Not in annotation. You can however set the columnDefinition and write the foreign key in there.

link|flag
Worth noting that not all RDBMS accept names of the "FK" in the CREATE TABLE statement under column/constraint definition, and also that since this JPA text component is undefined in terms of its content, you cannot rely on the result from different JPA implementations – Andy Jul 6 at 19:33
Depend on your implementation and target database, it can be useful. Personally I think that it should be defined in the JPA standard, but I try to be pragmatic and play with the cards I have... – David Rabinowitz Jul 6 at 23:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.