Rozważam użycie Adnotacji do zdefiniowania moich mapowań Hibernuj, ale mam problem: chcę zdefiniować wspólne pola (w tym pole ID), ale chcę, aby różne tabele miały różne strategie generowania identyfikatorów:Jak zastąpić strategię GenerationType przy użyciu adnotacji Hibernuj/JPA?
@MappedSuperclass
public abstract class Base implements Serializable {
@Id
@Column(name="ID", nullable = false)
private Integer id;
public Integer getId(){return id;}
public void setId(Integer id){this.id = id;}
...
}
@Entity
@Table(name="TABLE_A")
public class TableA extends Base {
// Table_A wants to set an application-defined value for ID
...
}
@Entity
@Table(name="TABLE_B")
public class TableB extends Base {
// How do I specify @GeneratedValue(strategy = AUTO) for ID here?
...
}
Czy jest jakiś sposób, aby to zrobić? Próbowałem w tym następujące w TableB
ale hibernacji sprzeciwił się moim posiadające tej samej kolumnie dwa razy i wydaje się źle:
@Override // So that we can set Generated strategy
@Id
@GeneratedValue(strategy = AUTO)
public Integer getId() {
return super.getId();
}
To całkiem elegancki sposób na zrobienie tego, pracował dla mnie! –