疯狂的狮子li
2021-10-15 ea249c33fdb89e90178da214133e01ea928e86a8
ruoyi-framework/src/main/java/com/ruoyi/framework/aspectj/DataSourceAspect.java
@@ -17,7 +17,7 @@
/**
 * 多数据源处理
 *
 * @author ruoyi
 * @author Lion Li
 */
@Aspect
@Order(-500)
@@ -25,7 +25,7 @@
public class DataSourceAspect {
   @Pointcut("@annotation(com.ruoyi.common.annotation.DataSource)"
      + "|| @within(com.ruoyi.common.annotation.DataSource)")
         + "|| @within(com.ruoyi.common.annotation.DataSource)")
   public void dsPointCut() {
   }
@@ -59,4 +59,5 @@
      return AnnotationUtils.findAnnotation(signature.getDeclaringType(), DataSource.class);
   }
}