Transactional.java

/*
 *    Copyright 2009-2025 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.
 *    You may obtain a copy of the License at
 *
 *       https://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
package org.mybatis.guice.transactional;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.apache.ibatis.session.ExecutorType;
import org.apache.ibatis.session.TransactionIsolationLevel;

/**
 * Any method marked with this annotation will be considered for transactionality.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface Transactional {

  /**
   * Returns the constant indicating the myBatis executor type.
   *
   * @return the constant indicating the myBatis executor type.
   */
  ExecutorType executorType() default ExecutorType.SIMPLE;

  /**
   * Returns the constant indicating the transaction isolation level.
   *
   * @return the constant indicating the transaction isolation level.
   */
  Isolation isolation() default Isolation.DEFAULT;

  /**
   * Returns the constant indicating the transaction isolation level.
   *
   * @return the constant indicating the transaction isolation level.
   *
   * @deprecated use {@link #isolation()} instead, setting this property has no effect.
   */
  @Deprecated
  TransactionIsolationLevel isolationLevel() default TransactionIsolationLevel.NONE;

  /**
   * Flag to indicate that myBatis has to force the transaction {@code commit().}
   *
   * @return false by default, user defined otherwise.
   */
  boolean force() default false;

  /**
   * Flag to indicate the auto commit policy.
   *
   * @return false by default, user defined otherwise.
   *
   * @deprecated Users that intend auto commit can achieve it by simply not using {@literal @Transactional}
   */
  @Deprecated
  boolean autoCommit() default false;

  /**
   * The exception re-thrown when an error occurs during the transaction.
   *
   * @return the exception re-thrown when an error occurs during the transaction.
   */
  Class<? extends Throwable> rethrowExceptionsAs() default Exception.class;

  /**
   * A custom error message when throwing the custom exception.
   * <p>
   * It supports java.util.Formatter place holders, intercepted method arguments will be used as message format
   * arguments.
   *
   * @return a custom error message when throwing the custom exception.
   *
   * @see java.util.Formatter#format(String, Object...)
   */
  String exceptionMessage() default "";

  /**
   * If true, the transaction will never committed but rather rolled back, useful for testing purposes.
   * <p>
   * This parameter is false by default.
   *
   * @return if true, the transaction will never committed but rather rolled back, useful for testing purposes.
   */
  boolean rollbackOnly() default false;

  //
  // from jakarta.transaction.Transactional
  //

  /**
   * The TxType element of the Transactional annotation indicates whether a bean method is to be executed within a
   * transaction context.
   *
   * @return the tx type
   */
  TxType value() default TxType.REQUIRED;

  /**
   * The TxType element of the annotation indicates whether a bean method is to be executed within a transaction context
   * where the values provide the following corresponding behavior.
   */
  public enum TxType {
    /**
     * <p>
     * If called outside a transaction context, the interceptor must begin a new JTA transaction, the managed bean
     * method execution must then continue inside this transaction context, and the transaction must be completed by the
     * interceptor.
     * </p>
     * <p>
     * If called inside a transaction context, the managed bean method execution must then continue inside this
     * transaction context.
     * </p>
     */
    REQUIRED,

    /**
     * <p>
     * If called outside a transaction context, the interceptor must begin a new JTA transaction, the managed bean
     * method execution must then continue inside this transaction context, and the transaction must be completed by the
     * interceptor.
     * </p>
     * <p>
     * If called inside a transaction context, the current transaction context must be suspended, a new JTA transaction
     * will begin, the managed bean method execution must then continue inside this transaction context, the transaction
     * must be completed, and the previously suspended transaction must be resumed.
     * </p>
     */
    REQUIRES_NEW,

    /**
     * <p>
     * If called outside a transaction context, a TransactionalException with a nested TransactionRequiredException must
     * be thrown.
     * </p>
     * <p>
     * If called inside a transaction context, managed bean method execution will then continue under that context.
     * </p>
     */
    MANDATORY,

    /**
     * <p>
     * If called outside a transaction context, managed bean method execution must then continue outside a transaction
     * context.
     * </p>
     * <p>
     * If called inside a transaction context, the managed bean method execution must then continue inside this
     * transaction context.
     * </p>
     */
    SUPPORTS,

    /**
     * <p>
     * If called outside a transaction context, managed bean method execution must then continue outside a transaction
     * context.
     * </p>
     * <p>
     * If called inside a transaction context, the current transaction context must be suspended, the managed bean
     * method execution must then continue outside a transaction context, and the previously suspended transaction must
     * be resumed by the interceptor that suspended it after the method execution has completed.
     * </p>
     */
    NOT_SUPPORTED,

    /**
     * <p>
     * If called outside a transaction context, managed bean method execution must then continue outside a transaction
     * context.
     * </p>
     * <p>
     * If called inside a transaction context, a TransactionalException with a nested InvalidTransactionException must
     * be thrown.
     * </p>
     */
    NEVER
  }

}