371461716e1c227f615ee389e7aaf8301d00f920.svn-base 486 B

1234567891011121314151617181920212223
  1. package org.jeecg.common.annotation;
  2. import org.springframework.core.annotation.AliasFor;
  3. import org.springframework.stereotype.Component;
  4. import java.lang.annotation.*;
  5. /**
  6. * @Author:zyf
  7. * @Date:2019-07-31 10:43
  8. * @Description: 消息队列初始化注解
  9. **/
  10. @Documented
  11. @Inherited
  12. @Target({ElementType.TYPE})
  13. @Retention(RetentionPolicy.RUNTIME)
  14. @Component
  15. public @interface RabbitComponent {
  16. @AliasFor(
  17. annotation = Component.class
  18. )
  19. String value();
  20. }