MailConstants.java 641 B

123456789101112131415161718192021222324252627
  1. package com.example.xiaoshiweixinback.business.config;
  2. public class MailConstants {
  3. //消息投递中
  4. public static final Integer DELIVERING = 0;
  5. //消息投成功
  6. public static final Integer SUCCESS = 1;
  7. //消息投递失败
  8. public static final Integer FAILURE = 2;
  9. //最大重试次数
  10. public static final Integer MAX_TRY_COUNT = 2;
  11. //消息超时时间
  12. public static final Integer MSG_TIMEOUT = 1;
  13. //队列
  14. //交换机
  15. public static final String MAIL_EXCHANGE_NAME = "mail.exchange";
  16. //路由键
  17. public static final String MAIL_ROUTING_KEY_NAME = "mail.routing.key";
  18. }