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

com.yuweix.tripod.dao.sharding.Sharding Maven / Gradle / Ivy

package com.yuweix.tripod.dao.sharding;


import java.lang.annotation.Target;
import java.lang.annotation.Retention;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;


/**
 * @author yuwei
 */
@Target({METHOD, FIELD})
@Retention(RUNTIME)
public @interface Sharding {
    /**
     * 分片策略
     */
    Class strategy() default ModStrategy.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy