File tree 1 file changed +4
-4
lines changed
spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/support
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 34
34
* @author Jens Schauder
35
35
* @author Oliver Gierke
36
36
* @author Milan Milanov
37
+ * @author Chirag Tailor
38
+ * @author Diego Krupitza
39
+ * @author Dmitriy Kovalenko
37
40
*/
38
41
@ Transactional (readOnly = true )
39
42
public class SimpleJdbcRepository <T , ID > implements PagingAndSortingRepository <T , ID > {
@@ -138,10 +141,7 @@ public void delete(T instance) {
138
141
entityOperations .delete (instance , entity .getType ());
139
142
}
140
143
141
- /*
142
- * (non-Javadoc)
143
- * @see org.springframework.data.repository.deleteAll#delete(java.lang.Iterable)
144
- */
144
+ @ Transactional
145
145
@ Override
146
146
public void deleteAllById (Iterable <? extends ID > ids ) {
147
147
ids .forEach (it -> entityOperations .deleteById (it , entity .getType ()));
You can’t perform that action at this time.
0 commit comments