We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c244e1 commit 685107dCopy full SHA for 685107d
spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/JpaRepository.java
@@ -79,7 +79,9 @@ default void deleteInBatch(Iterable<T> entities) {
79
* Deletes the given entities in a batch which means it will create a single query. This kind of operation leaves JPAs
80
* first level cache and the database out of sync. Consider flushing the {@link EntityManager} before calling this
81
* method.
82
- *
+ * <p>
83
+ * It will also NOT honor cascade semantics of JPA, nor will it emit JPA lifecycle events.
84
+ *</p>
85
* @param entities entities to be deleted. Must not be {@literal null}.
86
* @since 2.5
87
*/
0 commit comments