|
@@ -32,19 +32,19 @@ class DataSourceSwitchAspect {
|
|
|
logger.info("DataSourceSwitchAspect initializing...")
|
|
|
}
|
|
|
|
|
|
- private var isAnnotationAspect = false
|
|
|
+ private var isAnnotationAspect = ThreadLocal<Boolean>().apply { set(false) }
|
|
|
|
|
|
- @Pointcut("execution(* com.gxzc.zen.api..*Service.*(..))")
|
|
|
- fun zenServicePointCut() {
|
|
|
- }
|
|
|
+// @Pointcut("execution(* com.gxzc.zen.api..*Service.*(..))")
|
|
|
+// fun zenServicePointCut() {
|
|
|
+// }
|
|
|
|
|
|
@Pointcut("execution(* com.gxzc.zen.api..*Mapper.*(..))")
|
|
|
fun zenMapperPointCut() {
|
|
|
}
|
|
|
|
|
|
- @Pointcut("execution(* com.baomidou.mybatisplus..*Service.*(..))")
|
|
|
- fun mpServicePointCut() {
|
|
|
- }
|
|
|
+// @Pointcut("execution(* com.baomidou.mybatisplus..*Service.*(..))")
|
|
|
+// fun mpServicePointCut() {
|
|
|
+// }
|
|
|
|
|
|
@Pointcut("execution(* com.baomidou.mybatisplus..*Mapper.*(..))")
|
|
|
fun mpMapperPointCut() {
|
|
@@ -52,22 +52,22 @@ class DataSourceSwitchAspect {
|
|
|
|
|
|
@Around("@annotation(com.gxzc.zen.orm.annotation.DynamicDataSource)")
|
|
|
fun annotationAround(joinPoint: ProceedingJoinPoint): Any? {
|
|
|
- logger.debug("@DynamicDatasource aspect...")
|
|
|
- isAnnotationAspect = true
|
|
|
+ logger.trace("@DynamicDatasource aspect...")
|
|
|
+ isAnnotationAspect.set(true)
|
|
|
val method = (joinPoint.signature as MethodSignature).method
|
|
|
setDataSource(method, DSKey.DSKEY_SYS)
|
|
|
try {
|
|
|
return joinPoint.proceed()
|
|
|
} finally {
|
|
|
- isAnnotationAspect = false
|
|
|
+ isAnnotationAspect.set(false)
|
|
|
DynamicMultipleDataSource.clear()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@Before("zenMapperPointCut() || mpMapperPointCut()")
|
|
|
fun dynamicDataSource(joinPoint: JoinPoint) {
|
|
|
- logger.debug("*Mapper aspect...")
|
|
|
- if (isAnnotationAspect) {
|
|
|
+ logger.trace("*Mapper aspect...")
|
|
|
+ if (isAnnotationAspect.get()) {
|
|
|
return
|
|
|
}
|
|
|
val target = joinPoint.target
|