목록JPA (1)
0gam
JPA Cascade Types
JPA Cascade TypesThe cascade types supported by the Java Persistence Architecture are as below:CascadeType.PERSIST : means that save() or persist() operations cascade to related entities.CascadeType.MERGE : means that related entities are merged when the owning entity is merged.CascadeType.REFRESH : does the same thing for the refresh() operation.CascadeType.REMOVE : removes all related entities..
Hibernate, JPA
2018. 5. 30. 18:19