Quantcast
Channel: One to many map in Hibernate - error - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by Nicolae Albu for One to many map in Hibernate - error

$
0
0

Use nullable = false to tell Hibernate that the join column cannot be null:

@Entity@Table(name = "ITEM")public class Item  implements Serializable {    // ...    @OneToMany(cascade = CascadeType.ALL)    @JoinColumn(name = "ID_ITEM", referencedColumnName = "ID", nullable = false)    private List<ItemDetail> itemDetails;    // ...}

and remove the itemId property from ItemDetail as it is already mapped by the @JoinColumn annotation. If you need the itemId, then use a bi-directional relationship (hold a reference to the entire Item object, not just the ID).


Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>