1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.fastbee.mq.config;
|
| import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
| import org.springframework.context.annotation.Configuration;
|
| /**
| * mq集群配置
| * @author gsb
| * @date 2022/10/10 8:27
| */
| @Configuration
| @ConditionalOnExpression("${cluster.enable:false}")
| public class MqConfig {
|
|
|
| }
|
|