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

net.hasor.db.solon.Db Maven / Gradle / Ivy

There is a newer version: 2.9.4
Show newest version
package net.hasor.db.solon;

import java.lang.annotation.*;

/**
 * 数据工厂注解
 *
 * 例:
 * @Db("db1")
 *
 * @author noear
 * @since 1.6
 * */
@Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Db {
    /**
     * datsSource bean name
     * */
    String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy