ru.mail.jira.plugins.commons.tx.TransactionalAnnotationProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Commons library for atlascommunity Jira plugins
The newest version!
package ru.mail.jira.plugins.commons.tx;
import org.springframework.stereotype.Component;
import ru.mail.jira.plugins.commons.spring.ProxiedBeanPostProcessor;
/** Если в джире задана проперти jira.db.txns.disabled = true, транзакции работать не будут */
@Component
public final class TransactionalAnnotationProcessor extends ProxiedBeanPostProcessor {
public TransactionalAnnotationProcessor() {
super(TransactionalInterceptor.ANNOTATION_CLASS, new TransactionalInterceptor());
}
}