My Tables:
Product: id, name
Offer: id, value, product_id
Entities:
@Entity @Table(name=\"product\"
This solved my issue
@OneToMany(mappedBy = "columnName", cascade = { CascadeType.ALL}, fetch=FetchType.EAGER)