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 3434 * @author Jens Schauder
3535 * @author Oliver Gierke
3636 * @author Milan Milanov
37+ * @author Chirag Tailor
38+ * @author Diego Krupitza
39+ * @author Dmitriy Kovalenko
3740 */
3841@ Transactional (readOnly = true )
3942public class SimpleJdbcRepository <T , ID > implements PagingAndSortingRepository <T , ID > {
@@ -138,10 +141,7 @@ public void delete(T instance) {
138141 entityOperations .delete (instance , entity .getType ());
139142 }
140143
141- /*
142- * (non-Javadoc)
143- * @see org.springframework.data.repository.deleteAll#delete(java.lang.Iterable)
144- */
144+ @ Transactional
145145 @ Override
146146 public void deleteAllById (Iterable <? extends ID > ids ) {
147147 ids .forEach (it -> entityOperations .deleteById (it , entity .getType ()));
You can’t perform that action at this time.
0 commit comments