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