io.quarkus.narayana.jta.runtime.interceptor.TransactionalInterceptorNever Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-narayana-jta Show documentation
Show all versions of quarkus-narayana-jta Show documentation
Offer JTA transaction support (included in Hibernate ORM)
package io.quarkus.narayana.jta.runtime.interceptor;
import javax.annotation.Priority;
import javax.interceptor.AroundInvoke;
import javax.interceptor.Interceptor;
import javax.interceptor.InvocationContext;
import javax.transaction.InvalidTransactionException;
import javax.transaction.Transaction;
import javax.transaction.TransactionManager;
import javax.transaction.Transactional;
import javax.transaction.TransactionalException;
import com.arjuna.ats.jta.logging.jtaLogger;
/**
* @author [email protected] 25/05/2013
*/
@Interceptor
@Transactional(Transactional.TxType.NEVER)
@Priority(Interceptor.Priority.PLATFORM_BEFORE + 200)
public class TransactionalInterceptorNever extends TransactionalInterceptorBase {
public TransactionalInterceptorNever() {
super(true);
}
@Override
@AroundInvoke
public Object intercept(InvocationContext ic) throws Exception {
return super.intercept(ic);
}
@Override
protected Object doIntercept(TransactionManager tm, Transaction tx, InvocationContext ic) throws Exception {
if (tx != null) {
throw new TransactionalException(jtaLogger.i18NLogger.get_tx_required(), new InvalidTransactionException());
}
return invokeInNoTx(ic);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy