Skip to content

Commit

Permalink
Use the TransactionSynchronization instead of TransactionSynchronizat…
Browse files Browse the repository at this point in the history
…ionAdapter

TransactionSynchronizationAdapter is deprecated already

(cherry picked from commit 894b7a3)
  • Loading branch information
kazuki43zoo committed May 14, 2023
1 parent e8b9024 commit 6693741
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/mybatis/spring/SqlSessionUtils.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2022 the original author or authors.
* Copyright 2010-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,7 +29,7 @@
import org.springframework.dao.TransientDataAccessResourceException;
import org.springframework.dao.support.PersistenceExceptionTranslator;
import org.springframework.jdbc.datasource.DataSourceUtils;
import org.springframework.transaction.support.TransactionSynchronizationAdapter;
import org.springframework.transaction.support.TransactionSynchronization;
import org.springframework.transaction.support.TransactionSynchronizationManager;

/**
Expand Down Expand Up @@ -225,7 +225,7 @@ public static boolean isSqlSessionTransactional(SqlSession session, SqlSessionFa
* {@code SqlSession}. It assumes that {@code Connection} life cycle will be managed by
* {@code DataSourceTransactionManager} or {@code JtaTransactionManager}
*/
private static final class SqlSessionSynchronization extends TransactionSynchronizationAdapter {
private static final class SqlSessionSynchronization implements TransactionSynchronization {

private final SqlSessionHolder holder;

Expand Down

0 comments on commit 6693741

Please sign in to comment.