Domande taggate «persist»


18
PersistentObjectException: entità distaccata passata a persistente generata da JPA e Hibernate
Ho un modello a oggetti persistente JPA che contiene una relazione molti-a-uno: uno ne Accountha molti Transactions. A ne Transactionha uno Account. Ecco uno snippet del codice: @Entity public class Transaction { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @ManyToOne(cascade = {CascadeType.ALL},fetch= FetchType.EAGER) private Account fromAccount; .... @Entity public class …
237 java  hibernate  jpa  entity  persist 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.