我想知道如果更新oneToMany关系,是否会更改域版本。 例如,User实体与地址具有OneToMany关系。因此,如果我要更新地址列表,它会对用户版本产生影响吗?
@Entity public class User {
@Id @Column(name = "id")
@GeneratedValue
private Long id;
@OneToMany (mappedBy = "document")
public Set<Addresses> userAddresses;
@Version @Column(name="OPTLOCK")
public Integer getVersion() { ... }
}