We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fbc68e commit 559a448Copy full SHA for 559a448
spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/support/SimpleJdbcRepository.java
@@ -41,6 +41,7 @@
41
* @author Milan Milanov
42
* @author Chirag Tailor
43
* @author Diego Krupitza
44
+ * @author Dmitriy Kovalenko
45
*/
46
@Transactional(readOnly = true)
47
public class SimpleJdbcRepository<T, ID>
@@ -110,6 +111,7 @@ public void delete(T instance) {
110
111
entityOperations.delete(instance);
112
}
113
114
+ @Transactional
115
@Override
116
public void deleteAllById(Iterable<? extends ID> ids) {
117
entityOperations.deleteAllById(ids, entity.getType());
0 commit comments