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

com.yuweix.kuafu.sharding.annotation.Shard Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.sharding.annotation;


import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;


/**
 * 注解在方法参数上,如果该参数包含一个{@link Sharding}注解的属性,则以该属性值进行分库分表,否则以该参数的值进行分库分表。
 * @author yuwei
 */
@Target({PARAMETER})
@Retention(RUNTIME)
public @interface Shard {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy