I am working in Spring-Hibernate
application.My question is related to orphan removal
as described below in the code.
@Entity
public class User {
...........
@OneToMany(mappedBy = "user", orphanRemoval = true, cascade = CascadeType.ALL)
List<UserRole> userRoles = new ArrayList<>();
..........
}
Considering the save/update User
scenario.
One way is to remove that child object from the list like user.getUserRoles().remove(userRole)
.
The other way could be like clearing the child list as user.getUserRoles().clear()
and then adding it to the list whatever user roles are coming in the request. In this case, user roles not coming in the request will be deleted by orphan removal
.
Which one is better and more correct?
Well, it depends upon the situation and the type of semantic you are using; see Collection performance for more information on different semantics and their performance tuning.
Well, in this case you are using list semantic for the one-to-many association, therefore suppose you have 20 elements in list then:
Option 1: you are removing 15 elements one by one and adding 1 elements in it then hibernate will issue 15 DELETE statements and one INSERT statement.
Option 2: you clear the whole list and add all 6 elements manually, this way only 6 INSERT statements will be issued and 1DELETE statement will be issued.
I will go with the option 2 if the collection is heavily modified see One shot delete for more details and I will go for option 1 if the list is not heavily modified.