You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
519 B
24 lines
519 B
package cc.niushuai.bastionserver.common.constant; |
|
|
|
/** |
|
* GlobalConstants |
|
* |
|
* @author: scott |
|
* @date: 2020/01/01 16:01 |
|
*/ |
|
public class GlobalConstants { |
|
|
|
/** |
|
* 业务处理器beanName传递参数 |
|
*/ |
|
public static final String HANDLER_NAME = "handlerName"; |
|
/** |
|
* 路由刷新触发器 |
|
*/ |
|
public static final String LODER_ROUDER_HANDLER = "loderRouderHandler"; |
|
|
|
/** |
|
* redis消息通道名称 |
|
*/ |
|
public static final String REDIS_TOPIC_NAME = "app_redis_topic"; |
|
}
|
|
|