All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.wangchenning.datasource.annotation.DataSource Maven / Gradle / Ivy

package com.github.wangchenning.datasource.annotation;

import java.lang.annotation.*;


/**
 * 切换数据注解 可以用于类或者方法级别 方法级别优先级 大于 类级别
 */
@Target({ElementType.METHOD, ElementType.TYPE, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DataSource {
    String value() default "master"; //该值即key值
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy