SqlSessionTemplate.java

  1. /*
  2.  * Copyright 2010-2024 the original author or authors.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  *    https://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. package org.mybatis.spring;

  17. import static java.lang.reflect.Proxy.newProxyInstance;

  18. import static org.apache.ibatis.reflection.ExceptionUtil.unwrapThrowable;
  19. import static org.mybatis.spring.SqlSessionUtils.closeSqlSession;
  20. import static org.mybatis.spring.SqlSessionUtils.getSqlSession;
  21. import static org.mybatis.spring.SqlSessionUtils.isSqlSessionTransactional;
  22. import static org.springframework.util.Assert.notNull;

  23. import java.lang.reflect.InvocationHandler;
  24. import java.lang.reflect.Method;
  25. import java.sql.Connection;
  26. import java.util.List;
  27. import java.util.Map;

  28. import org.apache.ibatis.cursor.Cursor;
  29. import org.apache.ibatis.exceptions.PersistenceException;
  30. import org.apache.ibatis.executor.BatchResult;
  31. import org.apache.ibatis.session.Configuration;
  32. import org.apache.ibatis.session.ExecutorType;
  33. import org.apache.ibatis.session.ResultHandler;
  34. import org.apache.ibatis.session.RowBounds;
  35. import org.apache.ibatis.session.SqlSession;
  36. import org.apache.ibatis.session.SqlSessionFactory;
  37. import org.springframework.beans.factory.DisposableBean;
  38. import org.springframework.dao.support.PersistenceExceptionTranslator;

  39. /**
  40.  * Thread safe, Spring managed, {@code SqlSession} that works with Spring transaction management to ensure that the
  41.  * actual SqlSession used is the one associated with the current Spring transaction. In addition, it manages the session
  42.  * life-cycle, including closing, committing or rolling back the session as necessary based on the Spring transaction
  43.  * configuration.
  44.  * <p>
  45.  * The template needs a SqlSessionFactory to create SqlSessions, passed as a constructor argument. It also can be
  46.  * constructed indicating the executor type to be used, if not, the default executor type, defined in the session
  47.  * factory will be used.
  48.  * <p>
  49.  * This template converts MyBatis PersistenceExceptions into unchecked DataAccessExceptions, using, by default, a
  50.  * {@code MyBatisExceptionTranslator}.
  51.  * <p>
  52.  * Because SqlSessionTemplate is thread safe, a single instance can be shared by all DAOs; there should also be a small
  53.  * memory savings by doing this. This pattern can be used in Spring configuration files as follows:
  54.  *
  55.  * <pre class="code">
  56.  * {@code
  57.  * <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate">
  58.  *   <constructor-arg ref="sqlSessionFactory" />
  59.  * </bean>
  60.  * }
  61.  * </pre>
  62.  *
  63.  * @author Putthiphong Boonphong
  64.  * @author Hunter Presnall
  65.  * @author Eduardo Macarron
  66.  *
  67.  * @see SqlSessionFactory
  68.  * @see MyBatisExceptionTranslator
  69.  */
  70. public class SqlSessionTemplate implements SqlSession, DisposableBean {

  71.   private final SqlSessionFactory sqlSessionFactory;

  72.   private final ExecutorType executorType;

  73.   private final SqlSession sqlSessionProxy;

  74.   private final PersistenceExceptionTranslator exceptionTranslator;

  75.   /**
  76.    * Constructs a Spring managed SqlSession with the {@code SqlSessionFactory} provided as an argument.
  77.    *
  78.    * @param sqlSessionFactory
  79.    *          a factory of SqlSession
  80.    */
  81.   public SqlSessionTemplate(SqlSessionFactory sqlSessionFactory) {
  82.     this(sqlSessionFactory, sqlSessionFactory.getConfiguration().getDefaultExecutorType());
  83.   }

  84.   /**
  85.    * Constructs a Spring managed SqlSession with the {@code SqlSessionFactory} provided as an argument and the given
  86.    * {@code ExecutorType} {@code ExecutorType} cannot be changed once the {@code SqlSessionTemplate} is constructed.
  87.    *
  88.    * @param sqlSessionFactory
  89.    *          a factory of SqlSession
  90.    * @param executorType
  91.    *          an executor type on session
  92.    */
  93.   public SqlSessionTemplate(SqlSessionFactory sqlSessionFactory, ExecutorType executorType) {
  94.     this(sqlSessionFactory, executorType,
  95.         new MyBatisExceptionTranslator(sqlSessionFactory.getConfiguration().getEnvironment().getDataSource(), true));
  96.   }

  97.   /**
  98.    * Constructs a Spring managed {@code SqlSession} with the given {@code SqlSessionFactory} and {@code ExecutorType}. A
  99.    * custom {@code SQLExceptionTranslator} can be provided as an argument so any {@code PersistenceException} thrown by
  100.    * MyBatis can be custom translated to a {@code RuntimeException} The {@code SQLExceptionTranslator} can also be null
  101.    * and thus no exception translation will be done and MyBatis exceptions will be thrown
  102.    *
  103.    * @param sqlSessionFactory
  104.    *          a factory of SqlSession
  105.    * @param executorType
  106.    *          an executor type on session
  107.    * @param exceptionTranslator
  108.    *          a translator of exception
  109.    */
  110.   public SqlSessionTemplate(SqlSessionFactory sqlSessionFactory, ExecutorType executorType,
  111.       PersistenceExceptionTranslator exceptionTranslator) {

  112.     notNull(sqlSessionFactory, "Property 'sqlSessionFactory' is required");
  113.     notNull(executorType, "Property 'executorType' is required");

  114.     this.sqlSessionFactory = sqlSessionFactory;
  115.     this.executorType = executorType;
  116.     this.exceptionTranslator = exceptionTranslator;
  117.     this.sqlSessionProxy = (SqlSession) newProxyInstance(SqlSessionFactory.class.getClassLoader(),
  118.         new Class[] { SqlSession.class }, new SqlSessionInterceptor());
  119.   }

  120.   public SqlSessionFactory getSqlSessionFactory() {
  121.     return this.sqlSessionFactory;
  122.   }

  123.   public ExecutorType getExecutorType() {
  124.     return this.executorType;
  125.   }

  126.   public PersistenceExceptionTranslator getPersistenceExceptionTranslator() {
  127.     return this.exceptionTranslator;
  128.   }

  129.   @Override
  130.   public <T> T selectOne(String statement) {
  131.     return this.sqlSessionProxy.selectOne(statement);
  132.   }

  133.   @Override
  134.   public <T> T selectOne(String statement, Object parameter) {
  135.     return this.sqlSessionProxy.selectOne(statement, parameter);
  136.   }

  137.   @Override
  138.   public <K, V> Map<K, V> selectMap(String statement, String mapKey) {
  139.     return this.sqlSessionProxy.selectMap(statement, mapKey);
  140.   }

  141.   @Override
  142.   public <K, V> Map<K, V> selectMap(String statement, Object parameter, String mapKey) {
  143.     return this.sqlSessionProxy.selectMap(statement, parameter, mapKey);
  144.   }

  145.   @Override
  146.   public <K, V> Map<K, V> selectMap(String statement, Object parameter, String mapKey, RowBounds rowBounds) {
  147.     return this.sqlSessionProxy.selectMap(statement, parameter, mapKey, rowBounds);
  148.   }

  149.   @Override
  150.   public <T> Cursor<T> selectCursor(String statement) {
  151.     return this.sqlSessionProxy.selectCursor(statement);
  152.   }

  153.   @Override
  154.   public <T> Cursor<T> selectCursor(String statement, Object parameter) {
  155.     return this.sqlSessionProxy.selectCursor(statement, parameter);
  156.   }

  157.   @Override
  158.   public <T> Cursor<T> selectCursor(String statement, Object parameter, RowBounds rowBounds) {
  159.     return this.sqlSessionProxy.selectCursor(statement, parameter, rowBounds);
  160.   }

  161.   @Override
  162.   public <E> List<E> selectList(String statement) {
  163.     return this.sqlSessionProxy.selectList(statement);
  164.   }

  165.   @Override
  166.   public <E> List<E> selectList(String statement, Object parameter) {
  167.     return this.sqlSessionProxy.selectList(statement, parameter);
  168.   }

  169.   @Override
  170.   public <E> List<E> selectList(String statement, Object parameter, RowBounds rowBounds) {
  171.     return this.sqlSessionProxy.selectList(statement, parameter, rowBounds);
  172.   }

  173.   @Override
  174.   public void select(String statement, ResultHandler handler) {
  175.     this.sqlSessionProxy.select(statement, handler);
  176.   }

  177.   @Override
  178.   public void select(String statement, Object parameter, ResultHandler handler) {
  179.     this.sqlSessionProxy.select(statement, parameter, handler);
  180.   }

  181.   @Override
  182.   public void select(String statement, Object parameter, RowBounds rowBounds, ResultHandler handler) {
  183.     this.sqlSessionProxy.select(statement, parameter, rowBounds, handler);
  184.   }

  185.   @Override
  186.   public int insert(String statement) {
  187.     return this.sqlSessionProxy.insert(statement);
  188.   }

  189.   @Override
  190.   public int insert(String statement, Object parameter) {
  191.     return this.sqlSessionProxy.insert(statement, parameter);
  192.   }

  193.   @Override
  194.   public int update(String statement) {
  195.     return this.sqlSessionProxy.update(statement);
  196.   }

  197.   @Override
  198.   public int update(String statement, Object parameter) {
  199.     return this.sqlSessionProxy.update(statement, parameter);
  200.   }

  201.   @Override
  202.   public int delete(String statement) {
  203.     return this.sqlSessionProxy.delete(statement);
  204.   }

  205.   @Override
  206.   public int delete(String statement, Object parameter) {
  207.     return this.sqlSessionProxy.delete(statement, parameter);
  208.   }

  209.   @Override
  210.   public <T> T getMapper(Class<T> type) {
  211.     return getConfiguration().getMapper(type, this);
  212.   }

  213.   @Override
  214.   public void commit() {
  215.     throw new UnsupportedOperationException("Manual commit is not allowed over a Spring managed SqlSession");
  216.   }

  217.   @Override
  218.   public void commit(boolean force) {
  219.     throw new UnsupportedOperationException("Manual commit is not allowed over a Spring managed SqlSession");
  220.   }

  221.   @Override
  222.   public void rollback() {
  223.     throw new UnsupportedOperationException("Manual rollback is not allowed over a Spring managed SqlSession");
  224.   }

  225.   @Override
  226.   public void rollback(boolean force) {
  227.     throw new UnsupportedOperationException("Manual rollback is not allowed over a Spring managed SqlSession");
  228.   }

  229.   @Override
  230.   public void close() {
  231.     throw new UnsupportedOperationException("Manual close is not allowed over a Spring managed SqlSession");
  232.   }

  233.   @Override
  234.   public void clearCache() {
  235.     this.sqlSessionProxy.clearCache();
  236.   }

  237.   @Override
  238.   public Configuration getConfiguration() {
  239.     return this.sqlSessionFactory.getConfiguration();
  240.   }

  241.   @Override
  242.   public Connection getConnection() {
  243.     return this.sqlSessionProxy.getConnection();
  244.   }

  245.   @Override
  246.   public List<BatchResult> flushStatements() {
  247.     return this.sqlSessionProxy.flushStatements();
  248.   }

  249.   /**
  250.    * Allow gently dispose bean:
  251.    *
  252.    * <pre>
  253.    * {@code
  254.    *
  255.    * <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
  256.    *  <constructor-arg index="0" ref="sqlSessionFactory" />
  257.    * </bean>
  258.    * }
  259.    * </pre>
  260.    *
  261.    * The implementation of {@link DisposableBean} forces spring context to use {@link DisposableBean#destroy()} method
  262.    * instead of {@link SqlSessionTemplate#close()} to shutdown gently.
  263.    *
  264.    * @see SqlSessionTemplate#close()
  265.    * @see "org.springframework.beans.factory.support.DisposableBeanAdapter#inferDestroyMethodIfNecessary(Object, RootBeanDefinition)"
  266.    * @see "org.springframework.beans.factory.support.DisposableBeanAdapter#CLOSE_METHOD_NAME"
  267.    */
  268.   @Override
  269.   public void destroy() throws Exception {
  270.     // This method forces spring disposer to avoid call of SqlSessionTemplate.close() which gives
  271.     // UnsupportedOperationException
  272.   }

  273.   /**
  274.    * Proxy needed to route MyBatis method calls to the proper SqlSession got from Spring's Transaction Manager It also
  275.    * unwraps exceptions thrown by {@code Method#invoke(Object, Object...)} to pass a {@code PersistenceException} to the
  276.    * {@code PersistenceExceptionTranslator}.
  277.    */
  278.   private class SqlSessionInterceptor implements InvocationHandler {
  279.     @Override
  280.     public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  281.       var sqlSession = getSqlSession(SqlSessionTemplate.this.sqlSessionFactory, SqlSessionTemplate.this.executorType,
  282.           SqlSessionTemplate.this.exceptionTranslator);
  283.       try {
  284.         var result = method.invoke(sqlSession, args);
  285.         if (!isSqlSessionTransactional(sqlSession, SqlSessionTemplate.this.sqlSessionFactory)) {
  286.           // force commit even on non-dirty sessions because some databases require
  287.           // a commit/rollback before calling close()
  288.           sqlSession.commit(true);
  289.         }
  290.         return result;
  291.       } catch (Throwable t) {
  292.         var unwrapped = unwrapThrowable(t);
  293.         if (SqlSessionTemplate.this.exceptionTranslator != null && unwrapped instanceof PersistenceException) {
  294.           // release the connection to avoid a deadlock if the translator is no loaded. See issue #22
  295.           closeSqlSession(sqlSession, SqlSessionTemplate.this.sqlSessionFactory);
  296.           sqlSession = null;
  297.           Throwable translated = SqlSessionTemplate.this.exceptionTranslator
  298.               .translateExceptionIfPossible((PersistenceException) unwrapped);
  299.           if (translated != null) {
  300.             unwrapped = translated;
  301.           }
  302.         }
  303.         throw unwrapped;
  304.       } finally {
  305.         if (sqlSession != null) {
  306.           closeSqlSession(sqlSession, SqlSessionTemplate.this.sqlSessionFactory);
  307.         }
  308.       }
  309.     }
  310.   }

  311. }