Я использую JPA toplink-essential и SQL Server 2008
Моя цель - получить значение первичного ключа с автоматическим повышением, которое будет вставлено в таблицу. Я знаю, что в JDBC есть метод getInsertedId(), который дает вам идентификатор первичного идентификатора auto-increment (но после выполнения инструкции insert)
В JPA я обнаружил, что @GenratedValue annotation
может сделать трюк.
@Entity
@Table(name = "tableOne")
public class TableOne implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Basic(optional = false)
@Column(name = "tableId")
private Integer tableId;
Теперь, если я запустил код ниже, он должен указать мне auto incremented id , но он возвращает NULL...
EntityManager em = EmProvider.getInstance().getEntityManagerFactory().createEntityManager();
EntityTransaction txn = em.getTransaction();
txn.begin();
TableOne parent = new TableOne();
em.persist(parent); //here I assume that id is pre-generated for me.
System.out.println(parent.getTableId()); //this returns NULL :(