File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -608,8 +608,8 @@ public long count(@Nullable Specification<T> spec) {
608608 return executeCountQuery (getCountQuery (spec , getDomainClass ()));
609609 }
610610
611- @ Transactional
612611 @ Override
612+ @ Transactional
613613 public <S extends T > S save (S entity ) {
614614
615615 Assert .notNull (entity , "Entity must not be null" );
@@ -622,8 +622,8 @@ public <S extends T> S save(S entity) {
622622 }
623623 }
624624
625- @ Transactional
626625 @ Override
626+ @ Transactional
627627 public <S extends T > S saveAndFlush (S entity ) {
628628
629629 S result = save (entity );
@@ -632,8 +632,8 @@ public <S extends T> S saveAndFlush(S entity) {
632632 return result ;
633633 }
634634
635- @ Transactional
636635 @ Override
636+ @ Transactional
637637 public <S extends T > List <S > saveAll (Iterable <S > entities ) {
638638
639639 Assert .notNull (entities , "Entities must not be null" );
@@ -647,8 +647,8 @@ public <S extends T> List<S> saveAll(Iterable<S> entities) {
647647 return result ;
648648 }
649649
650- @ Transactional
651650 @ Override
651+ @ Transactional
652652 public <S extends T > List <S > saveAllAndFlush (Iterable <S > entities ) {
653653
654654 List <S > result = saveAll (entities );
@@ -657,8 +657,8 @@ public <S extends T> List<S> saveAllAndFlush(Iterable<S> entities) {
657657 return result ;
658658 }
659659
660- @ Transactional
661660 @ Override
661+ @ Transactional
662662 public void flush () {
663663 entityManager .flush ();
664664 }
You can’t perform that action at this time.
0 commit comments