mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 12:05:05 +08:00
29 lines
772 B
Java
29 lines
772 B
Java
package com.jsowell.common.annotation;
|
|
|
|
import com.jsowell.common.enums.DataSourceType;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Inherited;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* 自定义多数据源切换注解
|
|
* <p>
|
|
* 优先级:先方法,后类,如果方法覆盖了类上的数据源类型,以方法的为准,否则以类上的为准
|
|
*
|
|
* @author jsowell
|
|
*/
|
|
@Target({ElementType.METHOD, ElementType.TYPE})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
@Inherited
|
|
public @interface DataSource {
|
|
/**
|
|
* 切换数据源名称
|
|
*/
|
|
public DataSourceType value() default DataSourceType.MASTER;
|
|
}
|