You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
766 B
28 lines
766 B
package com.mh.common.annotation; |
|
|
|
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; |
|
import com.mh.common.enums.DataSourceType; |
|
|
|
/** |
|
* 自定义多数据源切换注解 |
|
* |
|
* 优先级:先方法,后类,如果方法覆盖了类上的数据源类型,以方法的为准,否则以类上的为准 |
|
* |
|
* @author mh |
|
*/ |
|
@Target({ ElementType.METHOD, ElementType.TYPE }) |
|
@Retention(RetentionPolicy.RUNTIME) |
|
@Documented |
|
@Inherited |
|
public @interface DataSource |
|
{ |
|
/** |
|
* 切换数据源名称 |
|
*/ |
|
public DataSourceType value() default DataSourceType.MASTER; |
|
}
|
|
|