Inspectopedia Help

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.

Settings or Preferences | Editor | Inspections | JPA

Inspection Details

By default bundled with:

IntelliJ IDEA 2024.2, Qodana for JVM 2024.2,

Can be installed with plugin:

Jakarta EE: JPA Model, 242.22892

Last modified: 11 September 2024