DataSource.java 320 B

12345678910111213141516
  1. package io.renren.datasources.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * 多数据源注解
  5. * @author chenshun
  6. * @email sunlightcs@gmail.com
  7. * @date 2017/9/16 22:16
  8. */
  9. @Target(ElementType.METHOD)
  10. @Retention(RetentionPolicy.RUNTIME)
  11. @Documented
  12. public @interface DataSource {
  13. String name() default "";
  14. }