配置文件修改及sql

This commit is contained in:
fengtianyangyang 2022-04-07 17:35:22 +08:00
parent ba57f19ee7
commit 4cdb461c22
6 changed files with 134770 additions and 4644 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,18 +1,19 @@
server: server:
port: 8885 port: 8888
servlet: servlet:
context-path: / context-path: /
# #
# tomcat: # tomcat:
# #最大链接数默认不设置默认是10000 # #最大链接数默认不设置默认是10000
# max-connections: 6500 # max-connections: 6500
# #最大等待队列长度允许HTTP请求缓存到请求队列的最大个数默认不限制 # #最大等待队列长度允许HTTP请求缓存到请求队列的最大个数默认不限制
# accept-count: 1000 # accept-count: 1000
# threads: # threads:
# #最少闲置 # #最少闲置
# min-spare: 50 # min-spare: 50
# #最大线程数 默认是200 # #最大线程数 默认是200
# max: 800 # max: 800
netty: netty:
connection-timeout: connection-timeout:
@ -51,9 +52,9 @@ spring:
# Redis # Redis
redis: redis:
host: 120.71.145.134 host: 127.0.0.1
port: 6379 port: 6379
password: ekLhvPGraSj8DGO0 password: lilishop
lettuce: lettuce:
pool: pool:
# 连接池最大连接数(使用负值表示没有限制) 默认 8 # 连接池最大连接数(使用负值表示没有限制) 默认 8
@ -72,9 +73,9 @@ spring:
default-datasource: default-datasource:
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
driverClassName: com.mysql.cj.jdbc.Driver driverClassName: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://120.71.183.195:3306/zyt_shop?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&allowPublicKeyRetrieval=true&verifyServerCertificate=false&useSSL=false url: jdbc:mysql://127.0.0.1:3306/lilishop?useUnicode=true&characterEncoding=utf-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
username: zyt_shop username: root
password: Gb84505016@zytshop password: lilishop
maxActive: 50 maxActive: 50
initialSize: 10 initialSize: 10
maxWait: 60000 maxWait: 60000
@ -161,8 +162,8 @@ ignored:
# Swagger界面内容配置 # Swagger界面内容配置
swagger: swagger:
title: API接口文档 title: lili API接口文档
description: Api Documentation description: lili Api Documentation
version: 1.0.0 version: 1.0.0
termsOfServiceUrl: https://pickmall.cn termsOfServiceUrl: https://pickmall.cn
contact: contact:
@ -202,7 +203,7 @@ jasypt:
lili: lili:
system: system:
isDemoSite: false isDemoSite: true
statistics: statistics:
# 在线人数统计 X 小时。这里设置48即统计过去48小时每小时在线人数 # 在线人数统计 X 小时。这里设置48即统计过去48小时每小时在线人数
onlineMember: 48 onlineMember: 48
@ -220,10 +221,10 @@ lili:
admin: https://admin-b2b2c.pickmall.cn admin: https://admin-b2b2c.pickmall.cn
#api地址 #api地址
api: api:
buyer: https://zshop-api.sx1788.cn/buyer-api buyer: https://buyer-api.pickmall.cn
common: https://zshop-api.sx1788.cn/common-api common: https://common-api.pickmall.cn
manager: https://zshop-api.sx1788.cn/manager-api manager: https://admin-api.pickmall.cn
store: https://zshop-api.sx1788.cn/seller-api store: https://store-api.pickmall.cn
# jwt 细节设定 # jwt 细节设定
jwt-setting: jwt-setting:
@ -242,7 +243,7 @@ lili:
data: data:
elasticsearch: elasticsearch:
cluster-name: elasticsearch cluster-name: elasticsearch
cluster-nodes: 106.124.130.167:9200 cluster-nodes: 127.0.0.1:9200
index: index:
number-of-replicas: 0 number-of-replicas: 0
number-of-shards: 3 number-of-shards: 3
@ -252,7 +253,7 @@ lili:
# username: elastic # username: elastic
# password: LiLiShopES # password: LiLiShopES
logstash: logstash:
server: 106.124.130.167:4560 server: 192.168.0.116:4560
rocketmq: rocketmq:
promotion-topic: lili_promotion_topic promotion-topic: lili_promotion_topic
promotion-group: lili_promotion_group promotion-group: lili_promotion_group
@ -273,7 +274,7 @@ lili:
after-sale-topic: lili_after_sale_topic after-sale-topic: lili_after_sale_topic
after-sale-group: lili_after_sale_group after-sale-group: lili_after_sale_group
rocketmq: rocketmq:
name-server: 106.124.130.167:9876 name-server: 127.0.0.1:9876
producer: producer:
group: lili_group group: lili_group
send-message-timeout: 30000 send-message-timeout: 30000
@ -288,4 +289,4 @@ xxl:
ip: ip:
port: 8891 port: 8891
logpath: ./xxl-job/executor logpath: ./xxl-job/executor
logretentiondays: 7 logretentiondays: 7

View File

@ -1,5 +1,6 @@
server: server:
port: 8890 port: 8890
servlet: servlet:
context-path: / context-path: /
@ -32,9 +33,9 @@ spring:
type: redis type: redis
# Redis # Redis
redis: redis:
host: 120.71.145.134 host: 127.0.0.1
port: 6379 port: 6379
password: ekLhvPGraSj8DGO0 password: lilishop
lettuce: lettuce:
pool: pool:
# 连接池最大连接数(使用负值表示没有限制) 默认 8 # 连接池最大连接数(使用负值表示没有限制) 默认 8
@ -63,9 +64,9 @@ spring:
default-datasource: default-datasource:
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
driverClassName: com.mysql.cj.jdbc.Driver driverClassName: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://120.71.183.195:3306/zyt_shop?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&allowPublicKeyRetrieval=true&verifyServerCertificate=false&useSSL=false url: jdbc:mysql://127.0.0.1:3306/lilishop?useUnicode=true&characterEncoding=utf-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
username: zyt_shop username: root
password: Gb84505016@zytshop password: lilishop
maxActive: 20 maxActive: 20
initialSize: 5 initialSize: 5
maxWait: 60000 maxWait: 60000
@ -136,8 +137,8 @@ ignored:
# Swagger界面内容配置 # Swagger界面内容配置
swagger: swagger:
title: API接口文档 title: lili API接口文档
description: Api Documentation description: lili Api Documentation
version: 1.0.0 version: 1.0.0
termsOfServiceUrl: https://pickmall.cn termsOfServiceUrl: https://pickmall.cn
contact: contact:
@ -190,17 +191,17 @@ lili:
#短信模版配置 #短信模版配置
sms: sms:
#登录 #登录
LOGIN: SMS_185821482 LOGIN: SMS_205755300
#注册 #注册
REGISTER: SMS_185821482 REGISTER: SMS_205755298
#找回密码 #找回密码
FIND_USER: SMS_185821482 FIND_USER: SMS_205755301
#设置密码 #设置密码
UPDATE_PASSWORD: SMS_185821482 UPDATE_PASSWORD: SMS_205755297
#支付密码 #支付密码
WALLET_PASSWORD: SMS_185821482 WALLET_PASSWORD: SMS_205755301
system: system:
isTestModel: false isTestModel: true
statistics: statistics:
# 在线人数统计 X 小时。这里设置48即统计过去48小时每小时在线人数 # 在线人数统计 X 小时。这里设置48即统计过去48小时每小时在线人数
onlineMember: 48 onlineMember: 48
@ -212,16 +213,17 @@ lili:
sk: zhNKVrJK6UPOhqIjn8AQvG37b9sz6 sk: zhNKVrJK6UPOhqIjn8AQvG37b9sz6
#域名 #域名
domain: domain:
pc: https://zbuyer.sx1788.cn pc: https://pc.b2b2c.pickmall.cn
wap: https://zshop.sx1788.cn wap: https://m.b2b2c.pickmall.cn
store: https://zseller.sx1788.cn store: https://store.b2b2c.pickmall.cn
admin: https://zmanager.sx1788.cn admin: https://admin.b2b2c.pickmall.cn
#api地址 #api地址
api: api:
buyer: https://zshop-api.sx1788.cn/buyer-api buyer: https://buyer-api.pickmall.cn
common: https://zshop-api.sx1788.cn/common-api common: https://common-api.pickmall.cn
manager: https://zshop-api.sx1788.cn/manager-api manager: https://admin-api.pickmall.cn
store: https://zshop-api.sx1788.cn/seller-api store: https://store-api.pickmall.cn
# jwt 细节设定 # jwt 细节设定
jwt-setting: jwt-setting:
# token过期时间分钟 # token过期时间分钟
@ -239,7 +241,7 @@ lili:
data: data:
elasticsearch: elasticsearch:
cluster-name: elasticsearch cluster-name: elasticsearch
cluster-nodes: 106.124.130.167:9200 cluster-nodes: 127.0.0.1:9200
index: index:
number-of-replicas: 0 number-of-replicas: 0
number-of-shards: 3 number-of-shards: 3
@ -249,7 +251,7 @@ lili:
# username: elastic # username: elastic
# password: LiLiShopES # password: LiLiShopES
logstash: logstash:
server: 106.124.130.167:4560 server: 127.0.0.1:4560
rocketmq: rocketmq:
promotion-topic: lili_promotion_topic promotion-topic: lili_promotion_topic
promotion-group: lili_promotion_group promotion-group: lili_promotion_group
@ -268,7 +270,7 @@ lili:
notice-send-topic: lili_send_notice_topic notice-send-topic: lili_send_notice_topic
notice-send-group: lili_send_notice_group notice-send-group: lili_send_notice_group
rocketmq: rocketmq:
name-server: 106.124.130.167:9876 name-server: 127.0.0.1:9876
producer: producer:
group: lili_group group: lili_group
send-message-timeout: 30000 send-message-timeout: 30000

View File

@ -1,5 +1,6 @@
server: server:
port: 8886 port: 8886
servlet: servlet:
context-path: / context-path: /
@ -35,9 +36,9 @@ spring:
type: redis type: redis
# Redis # Redis
redis: redis:
host: 120.71.145.134 host: 127.0.0.1
port: 6379 port: 6379
password: ekLhvPGraSj8DGO0 password: lilishop
lettuce: lettuce:
pool: pool:
# 连接池最大连接数(使用负值表示没有限制) 默认 8 # 连接池最大连接数(使用负值表示没有限制) 默认 8
@ -66,9 +67,9 @@ spring:
default-datasource: default-datasource:
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
driverClassName: com.mysql.cj.jdbc.Driver driverClassName: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://120.71.183.195:3306/zyt_shop?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&allowPublicKeyRetrieval=true&verifyServerCertificate=false&useSSL=false url: jdbc:mysql://127.0.0.1:3306/lilishop?useUnicode=true&characterEncoding=utf-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
username: zyt_shop username: root
password: Gb84505016@zytshop password: lilishop
maxActive: 20 maxActive: 20
initialSize: 5 initialSize: 5
maxWait: 60000 maxWait: 60000
@ -137,8 +138,8 @@ ignored:
- /buyer/memberEvaluation/**/goodsEvaluation - /buyer/memberEvaluation/**/goodsEvaluation
- /buyer/memberEvaluation/**/evaluationNumber - /buyer/memberEvaluation/**/evaluationNumber
- /store/login/** - /store/login/**
- /manager/passport/user/login - /manager/user/login
- /manager/passport/user/refresh/** - /manager/user/refresh/**
- /druid/** - /druid/**
- /swagger-ui.html - /swagger-ui.html
- /doc.html - /doc.html
@ -155,8 +156,8 @@ ignored:
# Swagger界面内容配置 # Swagger界面内容配置
swagger: swagger:
title: API接口文档 title: lili API接口文档
description: Api Documentation description: lili Api Documentation
version: 1.0.0 version: 1.0.0
termsOfServiceUrl: https://pickmall.cn termsOfServiceUrl: https://pickmall.cn
contact: contact:
@ -197,7 +198,7 @@ jasypt:
lili: lili:
system: system:
isDemoSite: false isDemoSite: true
statistics: statistics:
# 在线人数统计 X 小时。这里设置48即统计过去48小时每小时在线人数 # 在线人数统计 X 小时。这里设置48即统计过去48小时每小时在线人数
onlineMember: 48 onlineMember: 48
@ -209,16 +210,17 @@ lili:
sk: zhNKVrJK6UPOhqIjn8AQvG37b9sz6 sk: zhNKVrJK6UPOhqIjn8AQvG37b9sz6
#域名 #域名
domain: domain:
pc: https://zbuyer.sx1788.cn pc: https://pc.b2b2c.pickmall.cn
wap: https://zshop.sx1788.cn wap: https://m.b2b2c.pickmall.cn
store: https://zseller.sx1788.cn store: https://store.b2b2c.pickmall.cn
admin: https://zmanager.sx1788.cn admin: https://admin.b2b2c.pickmall.cn
#api地址 #api地址
api: api:
buyer: https://zshop-api.sx1788.cn/buyer-api buyer: https://buyer-api.pickmall.cn
common: https://zshop-api.sx1788.cn/common-api common: https://common-api.pickmall.cn
manager: https://zshop-api.sx1788.cn/manager-api manager: https://admin-api.pickmall.cn
store: https://zshop-api.sx1788.cn/seller-api store: https://store-api.pickmall.cn
# jwt 细节设定 # jwt 细节设定
jwt-setting: jwt-setting:
# token过期时间分钟 # token过期时间分钟
@ -236,7 +238,7 @@ lili:
data: data:
elasticsearch: elasticsearch:
cluster-name: elasticsearch cluster-name: elasticsearch
cluster-nodes: 106.124.130.167:9200 cluster-nodes: 127.0.0.1:9200
index: index:
number-of-replicas: 0 number-of-replicas: 0
number-of-shards: 3 number-of-shards: 3
@ -246,7 +248,7 @@ lili:
# username: elastic # username: elastic
# password: LiLiShopES # password: LiLiShopES
logstash: logstash:
server: 106.124.130.167:4560 server: 127.0.0.1:4560
rocketmq: rocketmq:
promotion-topic: lili_promotion_topic promotion-topic: lili_promotion_topic
promotion-group: lili_promotion_group promotion-group: lili_promotion_group
@ -267,7 +269,7 @@ lili:
after-sale-topic: lili_after_sale_topic after-sale-topic: lili_after_sale_topic
after-sale-group: lili_after_sale_group after-sale-group: lili_after_sale_group
rocketmq: rocketmq:
name-server: 106.124.130.167:9876 name-server: 127.0.0.1:9876
producer: producer:
group: lili_group group: lili_group
send-message-timeout: 30000 send-message-timeout: 30000

View File

@ -33,9 +33,9 @@ spring:
type: redis type: redis
# Redis # Redis
redis: redis:
host: 120.71.145.134 host: 127.0.0.1
port: 6379 port: 6379
password: ekLhvPGraSj8DGO0 password: lilishop
lettuce: lettuce:
pool: pool:
# 连接池最大连接数(使用负值表示没有限制) 默认 8 # 连接池最大连接数(使用负值表示没有限制) 默认 8
@ -64,9 +64,9 @@ spring:
default-datasource: default-datasource:
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
driverClassName: com.mysql.cj.jdbc.Driver driverClassName: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://120.71.183.195:3306/zyt_shop?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&allowPublicKeyRetrieval=true&verifyServerCertificate=false&useSSL=false url: jdbc:mysql://127.0.0.1:3306/lilishop?useUnicode=true&characterEncoding=utf-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
username: zyt_shop username: root
password: Gb84505016@zytshop password: lilishop
maxActive: 20 maxActive: 20
initialSize: 5 initialSize: 5
maxWait: 60000 maxWait: 60000
@ -139,8 +139,8 @@ ignored:
# Swagger界面内容配置 # Swagger界面内容配置
swagger: swagger:
title: API接口文档 title: lili API接口文档
description: Api Documentation description: lili Api Documentation
version: 1.0.0 version: 1.0.0
termsOfServiceUrl: https://pickmall.cn termsOfServiceUrl: https://pickmall.cn
contact: contact:
@ -181,7 +181,7 @@ jasypt:
lili: lili:
system: system:
isDemoSite: false isDemoSite: true
# 脱敏级别: # 脱敏级别:
# 0不做脱敏处理 # 0不做脱敏处理
# 1管理端用户手机号等信息脱敏 # 1管理端用户手机号等信息脱敏
@ -198,16 +198,17 @@ lili:
sk: zhNKVrJK6UPOhqIjn8AQvG37b9sz6 sk: zhNKVrJK6UPOhqIjn8AQvG37b9sz6
#域名 #域名
domain: domain:
pc: https://zbuyer.sx1788.cn pc: https://pc.b2b2c.pickmall.cn
wap: https://zshop.sx1788.cn wap: https://m.b2b2c.pickmall.cn
store: https://zseller.sx1788.cn store: https://store.b2b2c.pickmall.cn
admin: https://zmanager.sx1788.cn admin: https://admin.b2b2c.pickmall.cn
#api地址 #api地址
api: api:
buyer: https://zshop-api.sx1788.cn/buyer-api buyer: https://buyer-api.pickmall.cn
common: https://zshop-api.sx1788.cn/common-api common: https://common-api.pickmall.cn
manager: https://zshop-api.sx1788.cn/manager-api manager: https://admin-api.pickmall.cn
store: https://zshop-api.sx1788.cn/seller-api store: https://store-api.pickmall.cn
# jwt 细节设定 # jwt 细节设定
jwt-setting: jwt-setting:
# token过期时间分钟 # token过期时间分钟
@ -225,7 +226,7 @@ lili:
data: data:
elasticsearch: elasticsearch:
cluster-name: elasticsearch cluster-name: elasticsearch
cluster-nodes: 106.124.130.167:9200 cluster-nodes: 127.0.0.1:9200
index: index:
number-of-replicas: 0 number-of-replicas: 0
number-of-shards: 3 number-of-shards: 3
@ -235,7 +236,7 @@ lili:
# username: elastic # username: elastic
# password: LiLiShopES # password: LiLiShopES
logstash: logstash:
server: 106.124.130.167:4560 server: 127.0.0.1:4560
rocketmq: rocketmq:
promotion-topic: lili_promotion_topic promotion-topic: lili_promotion_topic
promotion-group: lili_promotion_group promotion-group: lili_promotion_group
@ -256,7 +257,7 @@ lili:
after-sale-topic: lili_after_sale_topic after-sale-topic: lili_after_sale_topic
after-sale-group: lili_after_sale_group after-sale-group: lili_after_sale_group
rocketmq: rocketmq:
name-server: 106.124.130.167:9876 name-server: 127.0.0.1:9876
producer: producer:
group: lili_group group: lili_group
send-message-timeout: 30000 send-message-timeout: 30000

View File

@ -33,9 +33,9 @@ spring:
type: redis type: redis
# Redis # Redis
redis: redis:
host: 120.71.145.134 host: 127.0.0.1
port: 6379 port: 6379
password: ekLhvPGraSj8DGO0 password: lilishop
lettuce: lettuce:
pool: pool:
# 连接池最大连接数(使用负值表示没有限制) 默认 8 # 连接池最大连接数(使用负值表示没有限制) 默认 8
@ -64,9 +64,9 @@ spring:
default-datasource: default-datasource:
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
driverClassName: com.mysql.cj.jdbc.Driver driverClassName: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://120.71.183.195:3306/zyt_shop?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&allowPublicKeyRetrieval=true&verifyServerCertificate=false&useSSL=false url: jdbc:mysql://127.0.0.1:3306/lilishop?useUnicode=true&characterEncoding=utf-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
username: zyt_shop username: root
password: Gb84505016@zytshop password: lilishop
maxActive: 20 maxActive: 20
initialSize: 5 initialSize: 5
maxWait: 60000 maxWait: 60000
@ -108,7 +108,8 @@ spring:
props: props:
#是否打印逻辑SQL语句和实际SQL语句建议调试时打印在生产环境关闭 #是否打印逻辑SQL语句和实际SQL语句建议调试时打印在生产环境关闭
sql: sql:
show: true show: false
# 忽略鉴权url # 忽略鉴权url
ignored: ignored:
urls: urls:
@ -136,14 +137,15 @@ ignored:
# Swagger界面内容配置 # Swagger界面内容配置
swagger: swagger:
title: API接口文档 title: lili API接口文档
description: Api Documentation description: lili Api Documentation
version: 1.0.0 version: 1.0.0
termsOfServiceUrl: termsOfServiceUrl: https://pickmall.cn
contact: contact:
name: rx name: lili
url: url: https://pickmall.cn
email: email: admin@pickmall.com
# Mybatis-plus # Mybatis-plus
mybatis-plus: mybatis-plus:
mapper-locations: classpath*:mapper/*.xml mapper-locations: classpath*:mapper/*.xml
@ -177,7 +179,7 @@ jasypt:
lili: lili:
system: system:
isDemoSite: false isDemoSite: true
statistics: statistics:
# 在线人数统计 X 小时。这里设置48即统计过去48小时每小时在线人数 # 在线人数统计 X 小时。这里设置48即统计过去48小时每小时在线人数
onlineMember: 48 onlineMember: 48
@ -189,16 +191,17 @@ lili:
sk: zhNKVrJK6UPOhqIjn8AQvG37b9sz6 sk: zhNKVrJK6UPOhqIjn8AQvG37b9sz6
#域名 #域名
domain: domain:
pc: https://zbuyer.sx1788.cn pc: https://pc.b2b2c.pickmall.cn
wap: https://zshop.sx1788.cn wap: https://m.b2b2c.pickmall.cn
store: https://zseller.sx1788.cn store: https://store.b2b2c.pickmall.cn
admin: https://zmanager.sx1788.cn admin: https://admin.b2b2c.pickmall.cn
#api地址 #api地址
api: api:
buyer: https://zshop-api.sx1788.cn/buyer-api buyer: https://buyer-api.pickmall.cn
common: https://zshop-api.sx1788.cn/common-api common: https://common-api.pickmall.cn
manager: https://zshop-api.sx1788.cn/manager-api manager: https://admin-api.pickmall.cn
store: https://zshop-api.sx1788.cn/seller-api store: https://store-api.pickmall.cn
# jwt 细节设定 # jwt 细节设定
jwt-setting: jwt-setting:
# token过期时间分钟 # token过期时间分钟
@ -216,7 +219,7 @@ lili:
data: data:
elasticsearch: elasticsearch:
cluster-name: elasticsearch cluster-name: elasticsearch
cluster-nodes: 106.124.130.167:9200 cluster-nodes: 127.0.0.1:9200
index: index:
number-of-replicas: 0 number-of-replicas: 0
number-of-shards: 3 number-of-shards: 3
@ -226,7 +229,7 @@ lili:
# username: elastic # username: elastic
# password: LiLiShopES # password: LiLiShopES
logstash: logstash:
server: 106.124.130.167:4560 server: 127.0.0.1:4560
rocketmq: rocketmq:
promotion-topic: lili_promotion_topic promotion-topic: lili_promotion_topic
promotion-group: lili_promotion_group promotion-group: lili_promotion_group
@ -247,7 +250,7 @@ lili:
after-sale-topic: lili_after_sale_topic after-sale-topic: lili_after_sale_topic
after-sale-group: lili_after_sale_group after-sale-group: lili_after_sale_group
rocketmq: rocketmq:
name-server: 106.124.130.167:9876 name-server: 127.0.0.1:9876
producer: producer:
group: lili_group group: lili_group
send-message-timeout: 30000 send-message-timeout: 30000