ThirdProjectInfoSpider.java 389 B

12345678910111213141516
  1. package org.lym.pom.annotation;
  2. import org.springframework.beans.factory.annotation.Qualifier;
  3. import java.lang.annotation.*;
  4. /**
  5. * 标记专门用来爬取版本号的客户端
  6. * @author lym
  7. */
  8. @Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
  9. @Retention(RetentionPolicy.RUNTIME)
  10. @Documented
  11. @Inherited
  12. @Qualifier
  13. public @interface ThirdProjectInfoSpider {}