यदि कोई फ़ील्ड एनोटेट है insertable=false, updatable=false
, तो इसका मतलब यह नहीं है कि आप मूल्य नहीं डाल सकते हैं और न ही मौजूदा मूल्य को बदल सकते हैं? आप ऐसा क्यों करना चाहते हो?
@Entity
public class Person {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@OneToMany(mappedBy="person", cascade=CascadeType.ALL)
private List<Address> addresses;
}
@Entity
public class Address {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@ManyToOne
@JoinColumn(name="ADDRESS_FK")
@Column(insertable=false, updatable=false)
private Person person;
}
insertable=false,updatable=false
रिश्ते के किसी एक पक्ष को परिभाषित करने को संदर्भित करता है ।