|
@@ -11,6 +11,7 @@ import org.aspectj.lang.reflect.MethodSignature
|
|
|
import org.slf4j.LoggerFactory
|
|
|
import org.springframework.stereotype.Component
|
|
|
import org.springframework.transaction.jta.JtaTransactionManager
|
|
|
+import javax.transaction.Status
|
|
|
import kotlin.reflect.KClass
|
|
|
|
|
|
/**
|
|
@@ -27,6 +28,8 @@ class MultiTransactionAspect {
|
|
|
private val logger = LoggerFactory.getLogger(MultiTransactionAspect::class.java)
|
|
|
}
|
|
|
|
|
|
+// private val counter: AtomicInteger = AtomicInteger(0)
|
|
|
+
|
|
|
init {
|
|
|
logger.info("MultiTransactionAspect initializing...")
|
|
|
}
|
|
@@ -36,6 +39,9 @@ class MultiTransactionAspect {
|
|
|
*/
|
|
|
@Around("@annotation(com.gxzc.zen.orm.annotation.ZenTransactional)")
|
|
|
fun multiTransactionAround(joinPoint: ProceedingJoinPoint): Any? {
|
|
|
+// if (counter.get() > 0) {
|
|
|
+// return joinPoint.proceed()
|
|
|
+// }
|
|
|
logger.trace("@ZenTransactional aspect...")
|
|
|
val methodName = joinPoint.signature.name
|
|
|
val parameterTypes = (joinPoint.signature as MethodSignature).method.parameterTypes
|
|
@@ -45,8 +51,16 @@ class MultiTransactionAspect {
|
|
|
val multiTransaction = method.getAnnotation(ZenTransactional::class.java)
|
|
|
val transactionManager = SpringContextHolder.getBean(JtaTransactionManager::class.java)
|
|
|
val userTransaction = transactionManager.userTransaction
|
|
|
+
|
|
|
+ // 防止嵌套事务 多次拦截
|
|
|
+ if (userTransaction.status == Status.STATUS_ACTIVE) {
|
|
|
+ return joinPoint.proceed()
|
|
|
+ }
|
|
|
+// logger.info(userTransaction.status.toString())
|
|
|
return try {
|
|
|
userTransaction.begin()
|
|
|
+// counter.addAndGet(1)
|
|
|
+// logger.info(userTransaction.status.toString())
|
|
|
val r = joinPoint.proceed()
|
|
|
userTransaction.commit()
|
|
|
r
|