For @ManyToMany associations, the REMOVE entity state transition doesn't make sense to be cascaded because it will propagate beyond the link table.
Checks for @ManyToMany
associations with the CascadeType.REMOVE
attribute. Specifying CascadeType.REMOVE
for @ManyToMany
doesn’t make sense to be cascaded because it will propagate beyond the link table. Since the other side might be referenced by other entities on the parent-side, the automatic removal might end up in a ConstraintViolationException
. For example, if @ManyToMany(cascade = CascadeType.ALL)
was defined, and the first person would be deleted, Hibernate would throw an exception because another person is still associated with the address that’s being deleted. For more info see the article.
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
ManyToManyCascadeRemove- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Jakarta EE: JPA Model, 242.22892 |