904d30594dbceebdc7e076f0439ee480542994a1.svn-base 778 B

123456789101112131415161718192021222324252627282930
  1. package org.jeecg.modules.cloud.constant;
  2. /**
  3. * 微服务单元测试常量定义
  4. */
  5. public interface CloudConstant {
  6. /**
  7. * 微服务名【对应模块jeecg-boot-module-demo】
  8. */
  9. public final static String SERVER_NAME_JEECGDEMO = "jeecg-demo";
  10. /**
  11. * MQ测试队列名字
  12. */
  13. public final static String MQ_JEECG_PLACE_ORDER = "jeecg_place_order";
  14. public final static String MQ_JEECG_PLACE_ORDER_TIME = "jeecg_place_order_time";
  15. /**
  16. * MQ测试消息总线
  17. */
  18. public final static String MQ_DEMO_BUS_EVENT = "demoBusEvent";
  19. /**
  20. * 分布式锁lock key
  21. */
  22. public final static String REDISSON_DEMO_LOCK_KEY1 = "demoLockKey1";
  23. public final static String REDISSON_DEMO_LOCK_KEY2 = "demoLockKey2";
  24. }