|
@@ -67,7 +67,7 @@ class DataSourceSwitchAspect {
|
|
|
@Before("zenMapperPointCut() || mpMapperPointCut()")
|
|
|
fun dynamicDataSource(joinPoint: JoinPoint) {
|
|
|
logger.trace("*Mapper aspect...")
|
|
|
- if (isAnnotationAspect.get()) {
|
|
|
+ if (isAnnotationAspect.get() != null && isAnnotationAspect.get()) {
|
|
|
return
|
|
|
}
|
|
|
val target = joinPoint.target
|