jpa deleting manytomany links
I have a table of events and i want to make groups of them. that is the easy easy
// this cascade group still removes the join table but not the products table @ManyToMany(targetEntity=Product.class,fetch = FetchType.EAGER, cascade = {CascadeType.PERSIST, CascadeType.REFRESH,CascadeType.MERGE}) @JoinTable(name = "lcw_group_product", joinColumns = { @JoinColumn(name = "group_id", referencedColumnName="id") }, inverseJoinColumns = { @JoinColumn(name = "product_id", referencedColumnName="id") }) @ElementForeignKey(updateAction = ForeignKeyAction.CASCADE) public Set getProducts() { return products; }
These annotations work when i want to complet开发者_高级运维ely remove the group but when i want to update the group to remove some of the links, leaving the events still there, i can't find a way to do this, i am currently doing delete statements of the link table but this doesn't get reflected in the parent entity
Just to clarify that the ElementForeignKey is an OpenJPA annotation, not a JPA one. Unfortunately, so far there is no orphanRemoval attribute for the ManyToMany annotation.
精彩评论