SqlSessionHolder.java

  1. /*
  2.  * Copyright 2010-2022 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 org.springframework.util.Assert.notNull;

  18. import org.apache.ibatis.session.ExecutorType;
  19. import org.apache.ibatis.session.SqlSession;
  20. import org.springframework.dao.support.PersistenceExceptionTranslator;
  21. import org.springframework.transaction.support.ResourceHolderSupport;

  22. /**
  23.  * Used to keep current {@code SqlSession} in {@code TransactionSynchronizationManager}. The {@code SqlSessionFactory}
  24.  * that created that {@code SqlSession} is used as a key. {@code ExecutorType} is also kept to be able to check if the
  25.  * user is trying to change it during a TX (that is not allowed) and throw a Exception in that case.
  26.  *
  27.  * @author Hunter Presnall
  28.  * @author Eduardo Macarron
  29.  */
  30. public final class SqlSessionHolder extends ResourceHolderSupport {

  31.   private final SqlSession sqlSession;

  32.   private final ExecutorType executorType;

  33.   private final PersistenceExceptionTranslator exceptionTranslator;

  34.   /**
  35.    * Creates a new holder instance.
  36.    *
  37.    * @param sqlSession
  38.    *          the {@code SqlSession} has to be hold.
  39.    * @param executorType
  40.    *          the {@code ExecutorType} has to be hold.
  41.    * @param exceptionTranslator
  42.    *          the {@code PersistenceExceptionTranslator} has to be hold.
  43.    */
  44.   public SqlSessionHolder(SqlSession sqlSession, ExecutorType executorType,
  45.       PersistenceExceptionTranslator exceptionTranslator) {

  46.     notNull(sqlSession, "SqlSession must not be null");
  47.     notNull(executorType, "ExecutorType must not be null");

  48.     this.sqlSession = sqlSession;
  49.     this.executorType = executorType;
  50.     this.exceptionTranslator = exceptionTranslator;
  51.   }

  52.   public SqlSession getSqlSession() {
  53.     return sqlSession;
  54.   }

  55.   public ExecutorType getExecutorType() {
  56.     return executorType;
  57.   }

  58.   public PersistenceExceptionTranslator getPersistenceExceptionTranslator() {
  59.     return exceptionTranslator;
  60.   }

  61. }