Answer the question
In order to leave comments, you need to log in
How to attach an image to a hibernate product?
I have Image:
@Entity
@Table(name="Image")
public class Image {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Column(name="url",nullable = false)
private String url;
}
@Entity
@Table(name="Product")
public class Product {
@OneToOne(fetch = FetchType.EAGER,cascade = CascadeType.ALL,orphanRemoval = true)
@JoinColumn(name="main_img_id")
private Image mainImage;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question