1. Cascading behaviour can be overwritten? forum.hibernate.orgHi all, is there some possibility to overwrite the cascading behaviour at runtime? I have @OneToMany(mappedBy = "customer", fetch = FetchType.EAGER) @Cascade( { CascadeType.ALL, CascadeType.DELETE_ORPHAN }) public Set |
2. Cascade behaviour forum.hibernate.orgHI, I'm trying to understand the behaviour of cascade This is my mapping for a 'File' object, which can have many 'Field' objects Code: @OneToMany(fetch=FetchType.LAZY) @JoinTable( name="BULK_UPLOAD_FILE_TYPE_FIELD", joinColumns = ... |