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 3535 * @author Jens Schauder
3636 * @author Oliver Gierke
3737 * @author Milan Milanov
38+ * @author Chirag Tailor
39+ * @author Diego Krupitza
40+ * @author Dmitriy Kovalenko
3841 */
3942@ Transactional (readOnly = true )
4043public class SimpleJdbcRepository <T , ID > implements PagingAndSortingRepository <T , ID > {
@@ -153,10 +156,7 @@ public void delete(T instance) {
153156 entityOperations .delete (instance , entity .getType ());
154157 }
155158
156- /*
157- * (non-Javadoc)
158- * @see org.springframework.data.repository.deleteAll#delete(java.lang.Iterable)
159- */
159+ @ Transactional
160160 @ Override
161161 public void deleteAllById (Iterable <? extends ID > ids ) {
162162 ids .forEach (it -> entityOperations .deleteById (it , entity .getType ()));
You can’t perform that action at this time.
0 commit comments