56 lines
1015 B
YAML
56 lines
1015 B
YAML
# Tomcat
|
|
server:
|
|
port: 9616
|
|
|
|
# Spring
|
|
spring:
|
|
application:
|
|
# 应用名称
|
|
name: couplet-mq
|
|
profiles:
|
|
# 环境配置
|
|
active: dev
|
|
cloud:
|
|
nacos:
|
|
discovery:
|
|
# 服务注册地址
|
|
server-addr: 121.89.211.230:8848
|
|
namespace: 172469
|
|
config:
|
|
# 配置中心地址
|
|
server-addr: 121.89.211.230:8848
|
|
namespace: 172469
|
|
# 配置文件格式
|
|
file-extension: yml
|
|
# 共享配置
|
|
shared-configs:
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
|
|
|
|
|
|
logging:
|
|
level:
|
|
com.couplet.system.mapper: DEBUG
|
|
|
|
# 订阅端配置
|
|
#mqtt:
|
|
# server:
|
|
# broker: tcp://8.130.181.16:1883
|
|
## broker: tcp://115.159.47.13:1883
|
|
# username:
|
|
# password:
|
|
# clientid: mqttx
|
|
# qos: 0
|
|
# topic: test
|
|
|
|
# RabbitMQ配置
|
|
mq:
|
|
queueName: queue
|
|
VinQueueName: vinQueueName
|
|
exchangeName: exchange
|
|
routingKey: routingKey
|
|
|
|
|