DataSourceSwitch.java 272 Bytes
package com.zhongzhi.common.configure;

import java.lang.annotation.*;

@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DataSourceSwitch {
    String value() default "db2"; // 默认使用主数据源
}