I have a JPA entity that has child collections via OneToMany relationships and I have set cascade=CascadeType.ALL however when I save the parent entity it does not save any changes done to the child collection (i.e adds or removes) , I have no idea why this is.
It would be useful to know if there was a way to get any information from JPA EntityManager etc about what will be saved at the end of the transaction.
Not sure how to do this? Debugging this has become impossible.