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 @@ -618,8 +618,8 @@ public long count(@Nullable Specification<T> spec) {
618618 return executeCountQuery (getCountQuery (spec , getDomainClass ()));
619619 }
620620
621- @ Transactional
622621 @ Override
622+ @ Transactional
623623 public <S extends T > S save (S entity ) {
624624
625625 Assert .notNull (entity , "Entity must not be null" );
@@ -632,8 +632,8 @@ public <S extends T> S save(S entity) {
632632 }
633633 }
634634
635- @ Transactional
636635 @ Override
636+ @ Transactional
637637 public <S extends T > S saveAndFlush (S entity ) {
638638
639639 S result = save (entity );
@@ -642,8 +642,8 @@ public <S extends T> S saveAndFlush(S entity) {
642642 return result ;
643643 }
644644
645- @ Transactional
646645 @ Override
646+ @ Transactional
647647 public <S extends T > List <S > saveAll (Iterable <S > entities ) {
648648
649649 Assert .notNull (entities , "Entities must not be null" );
@@ -657,8 +657,8 @@ public <S extends T> List<S> saveAll(Iterable<S> entities) {
657657 return result ;
658658 }
659659
660- @ Transactional
661660 @ Override
661+ @ Transactional
662662 public <S extends T > List <S > saveAllAndFlush (Iterable <S > entities ) {
663663
664664 List <S > result = saveAll (entities );
@@ -667,8 +667,8 @@ public <S extends T> List<S> saveAllAndFlush(Iterable<S> entities) {
667667 return result ;
668668 }
669669
670- @ Transactional
671670 @ Override
671+ @ Transactional
672672 public void flush () {
673673 entityManager .flush ();
674674 }
You can’t perform that action at this time.
0 commit comments