変数Long documentID
を自然キーではなく外部キーとして宣言することは可能Document document
ですか?例の下:
@Entity
@Table("document")
class Document{
...
@Id
Long id;
...
}
@Entity
@Table("something")
class Something{
....
//instead of
@ManyToOne
Document document;
// this one with the appropriate annotations
Long documentID;
...
}
前もって感謝します....