@ -8,7 +8,7 @@ spring:
autoconfigure:
autoconfigure:
exclude:
exclude:
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure # 排除 Druid 的自动配置,使用 dynamic-datasource-spring-boot-starter 配置多数据源
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure # 排除 Druid 的自动配置,使用 dynamic-datasource-spring-boot-starter 配置多数据源
- org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration # 默认 local 环境,不开启 Quartz 的自动配置
# - org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration # 默认 local 环境,不开启 Quartz 的自动配置
- de.codecentric.boot.admin.server.config.AdminServerAutoConfiguration # 禁用 Spring Boot Admin 的 Server 的自动配置
- de.codecentric.boot.admin.server.config.AdminServerAutoConfiguration # 禁用 Spring Boot Admin 的 Server 的自动配置
- de.codecentric.boot.admin.server.ui.config.AdminServerUiAutoConfiguration # 禁用 Spring Boot Admin 的 Server UI 的自动配置
- de.codecentric.boot.admin.server.ui.config.AdminServerUiAutoConfiguration # 禁用 Spring Boot Admin 的 Server UI 的自动配置
- de.codecentric.boot.admin.client.config.SpringBootAdminClientAutoConfiguration # 禁用 Spring Boot Admin 的 Client 的自动配置
- de.codecentric.boot.admin.client.config.SpringBootAdminClientAutoConfiguration # 禁用 Spring Boot Admin 的 Client 的自动配置
@ -47,34 +47,38 @@ spring:
primary : master
primary : master
datasource:
datasource:
master:
master:
url : jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例
name : ruoyi-vue-pro
# url: jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro?useSSL=true&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai # MySQL Connector/J 5.X 连接的示例
url : jdbc:mysql://192.168.10.14:23306/${spring.datasource.dynamic.datasource.master.name}?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例
# url: jdbc:postgresql://127.0.0.1:5432/ruoyi-vue-pro # PostgreSQL 连接的示例
# url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.master.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL Connector/J 5.X 连接的示例
# url: jdbc:postgresql://127.0.0.1:5432/${spring.datasource.dynamic.datasource.master.name} # PostgreSQL 连接的示例
# url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例
# url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=ruoyi-vue-pro;SelectMethod=cursor;encrypt=false;rewriteBatchedStatements=true;useUnicode=true;characterEncoding=utf-8 # SQLServer 连接的示例
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=${spring.datasource.dynamic.datasource.master.name} # SQLServer 连接的示例
# url: jdbc:dm://127.0.0.1:5236?schema=RUOYI_VUE_PRO # DM 连接的示例
# url: jdbc:dm://10.211.55.4:5236?schema=RUOYI_VUE_PRO # DM 连接的示例
# url: jdbc:kingbase8://127.0.0.1:54321/test # 人大金仓 KingbaseES 连接的示例
# url: jdbc:postgresql://127.0.0.1:5432/postgres # OpenGauss 连接的示例
username : root
username : root
password : 123456
password : hmkj@2023
# username: sa # SQL Server 连接的示例
# username: sa
# password: Yudao@2024 # SQL Server 连接的示例
# password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W
# username: SYSDBA # DM 连接的示例
# username: SYSDBA # DM 连接的示例
# password: SYSDBA001 # DM 连接的示例
# password: SYSDBA # DM 连接的示例
# username: root # OpenGauss 连接的示例
# password: Yudao@2024 # OpenGauss 连接的示例
slave : # 模拟从库,可根据自己需要修改
slave : # 模拟从库,可根据自己需要修改
name : ruoyi-vue-pro
lazy : true # 开启懒加载,保证启动速度
lazy : true # 开启懒加载,保证启动速度
url : jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
url : jdbc:mysql://192.168.10.14:23306/${spring.datasource.dynamic.datasource.slave.name}?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例
# url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.slave.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL Connector/J 5.X 连接的示例
# url: jdbc:postgresql://127.0.0.1:5432/${spring.datasource.dynamic.datasource.slave.name} # PostgreSQL 连接的示例
# url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=${spring.datasource.dynamic.datasource.slave.name} # SQLServer 连接的示例
username : root
username : root
password : 123456
password : hmkj@2023
# username: sa
# password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W
# Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优
# Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优
redis:
redis:
host : 1 27.0.0 .1 # 地址
host : 1 92.168.10 .14 # 地址
port : 6379 # 端口
port : 2 6379 # 端口
database : 0 # 数据库索引
database : 0 # 数据库索引
# password: dev # 密码,建议生产环境开启
password : hmkj@2023 # 密码,建议生产环境开启
--- #################### 定时任务相关配置 ####################
--- #################### 定时任务相关配置 ####################
@ -116,10 +120,11 @@ rocketmq:
spring:
spring:
# RabbitMQ 配置项,对应 RabbitProperties 配置类
# RabbitMQ 配置项,对应 RabbitProperties 配置类
rabbitmq:
rabbitmq:
host : 1 27.0.0 .1 # RabbitMQ 服务的地址
host : 1 92.168.10 .14 # RabbitMQ 服务的地址
port : 5672 # RabbitMQ 服务的端口
port : 5672 # RabbitMQ 服务的端口
username : rabbit # RabbitMQ 服务的账号
username : guest # RabbitMQ 服务的账号
password : rabbit # RabbitMQ 服务的密码
password : guest # RabbitMQ 服务的密码
virtual-host : /
# Kafka 配置项,对应 KafkaProperties 配置类
# Kafka 配置项,对应 KafkaProperties 配置类
kafka:
kafka:
bootstrap-servers : 127.0 .0 .1 : 9092 # 指定 Kafka Broker 地址,可以设置多个,以逗号分隔
bootstrap-servers : 127.0 .0 .1 : 9092 # 指定 Kafka Broker 地址,可以设置多个,以逗号分隔
@ -161,12 +166,12 @@ logging:
# 配置自己写的 MyBatis Mapper 打印日志
# 配置自己写的 MyBatis Mapper 打印日志
cn.iocoder.yudao.module.bpm.dal.mysql : debug
cn.iocoder.yudao.module.bpm.dal.mysql : debug
cn.iocoder.yudao.module.infra.dal.mysql : debug
cn.iocoder.yudao.module.infra.dal.mysql : debug
cn.iocoder.yudao.module.infra.dal.mysql.logger.ApiErrorLogMapper : INFO # 配置 ApiErrorLogMapper 的日志级别为 info, 避免和 GlobalExceptionHandler 重复打印
cn.iocoder.yudao.module.infra.dal.mysql.job.JobLogMapper : INFO # 配置 JobLogMapper 的日志级别为 info
cn.iocoder.yudao.module.infra.dal.mysql.job.JobLogMapper : INFO # 配置 JobLogMapper 的日志级别为 info
cn.iocoder.yudao.module.infra.dal.mysql.file.FileConfigMapper : INFO # 配置 FileConfigMapper 的日志级别为 info
cn.iocoder.yudao.module.infra.dal.mysql.file.FileConfigMapper : INFO # 配置 FileConfigMapper 的日志级别为 info
cn.iocoder.yudao.module.pay.dal.mysql : debug
cn.iocoder.yudao.module.pay.dal.mysql : debug
cn.iocoder.yudao.module.pay.dal.mysql.notify.PayNotifyTaskMapper : INFO # 配置 PayNotifyTask Mapper 的日志级别为 info
cn.iocoder.yudao.module.pay.dal.mysql.notify.PayNotifyTaskMapper : INFO # 配置 JobLog Mapper 的日志级别为 info
cn.iocoder.yudao.module.system.dal.mysql : debug
cn.iocoder.yudao.module.system.dal.mysql : debug
cn.iocoder.yudao.module.system.dal.mysql.sensitiveword.SensitiveWordMapper : INFO # 配置 SensitiveWordMapper 的日志级别为 info
cn.iocoder.yudao.module.system.dal.mysql.sms.SmsChannelMapper : INFO # 配置 SmsChannelMapper 的日志级别为 info
cn.iocoder.yudao.module.system.dal.mysql.sms.SmsChannelMapper : INFO # 配置 SmsChannelMapper 的日志级别为 info
cn.iocoder.yudao.module.tool.dal.mysql : debug
cn.iocoder.yudao.module.tool.dal.mysql : debug
cn.iocoder.yudao.module.member.dal.mysql : debug
cn.iocoder.yudao.module.member.dal.mysql : debug
@ -182,12 +187,12 @@ debug: false
--- #################### 微信公众号、小程序相关配置 ####################
--- #################### 微信公众号、小程序相关配置 ####################
wx:
wx:
mp : # 公众号配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-mp-spring-boot-starter/README.md 文档
mp : # 公众号配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-mp-spring-boot-starter/README.md 文档
# app-id: wx041349c6f39b268b # 测试号(牛希尧提供的)
# app-id: wx041349c6f39b268b # 测试号(牛希尧提供的)
# secret: 5abee519483bc9f8cb37ce280e814bd0
# secret: 5abee519483bc9f8cb37ce280e814bd0
app-id : wx5b23ba7a5589ecbb # 测试号(自己的)
app-id : wx5b23ba7a5589ecbb # 测试号(自己的)
secret : 2a7b3b20c537e52e74afd395eb85f61f
secret : 2a7b3b20c537e52e74afd395eb85f61f
# app-id: wxa69ab825b163be19 # 测试号( Kongdy 提供的)
# app-id: wxa69ab825b163be19 # 测试号( Kongdy 提供的)
# secret: bd4f9fab889591b62aeac0d7b8d8b4a0
# secret: bd4f9fab889591b62aeac0d7b8d8b4a0
# 存储配置,解决 AccessToken 的跨节点的共享
# 存储配置,解决 AccessToken 的跨节点的共享
config-storage:
config-storage:
type : RedisTemplate # 采用 RedisTemplate 操作 Redis, 会自动从 Spring 中获取
type : RedisTemplate # 采用 RedisTemplate 操作 Redis, 会自动从 Spring 中获取
@ -196,10 +201,12 @@ wx:
miniapp : # 小程序配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-miniapp-spring-boot-starter/README.md 文档
miniapp : # 小程序配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-miniapp-spring-boot-starter/README.md 文档
# appid: wx62056c0d5e8db250 # 测试号(牛希尧提供的)
# appid: wx62056c0d5e8db250 # 测试号(牛希尧提供的)
# secret: 333ae72f41552af1e998fe1f54e1584a
# secret: 333ae72f41552af1e998fe1f54e1584a
appid : wx63c280fe3248a3e7 # wenhualian的接口测试号
appid : wx53b5ac263b9cdb5b
secret : 6f270509224a7ae1296bbf1c8cb97aed
secret : baa127ca662344cf9b0b8e52b26bac9d
# appid: wxc4598c446f8a9cb3 # 测试号( Kongdy 提供的)
#appid: wx63c280fe3248a3e7 # wenhualian的接口测试号
# secret: 4a1a04e07f6a4a0751b39c3064a92c8b
#secret: 6f270509224a7ae1296bbf1c8cb97aed
# appid: wxc4598c446f8a9cb3 # 测试号( Kongdy 提供的)
# secret: 4a1a04e07f6a4a0751b39c3064a92c8b
config-storage:
config-storage:
type : RedisTemplate # 采用 RedisTemplate 操作 Redis, 会自动从 Spring 中获取
type : RedisTemplate # 采用 RedisTemplate 操作 Redis, 会自动从 Spring 中获取
key-prefix : wa # Redis Key 的前缀
key-prefix : wa # Redis Key 的前缀
@ -219,10 +226,12 @@ yudao:
- ${spring.boot.admin.context-path}/** # 不处理 Spring Boot Admin 的请求
- ${spring.boot.admin.context-path}/** # 不处理 Spring Boot Admin 的请求
- ${management.endpoints.web.base-path}/** # 不处理 Actuator 的请求
- ${management.endpoints.web.base-path}/** # 不处理 Actuator 的请求
pay:
pay:
order-notify-url : http ://yunai.natapp1.cc /admin-api/pay/notify/order # 支付渠道的【支付】回调地址
order-notify-url : http s://yanghaodong.51vip.biz /admin-api/pay/notify/order # 支付渠道的【支付】回调地址
refund-notify-url : http ://yunai.natapp1.cc /admin-api/pay/notify/refund # 支付渠道的【退款】回调地址
refund-notify-url : http s://yanghaodong.51vip.biz /admin-api/pay/notify/refund # 支付渠道的【退款】回调地址
access-log : # 访问日志的配置项
access-log : # 访问日志的配置项
enable : false
enable : false
error-code : # 错误码相关配置项
enable : false
demo : false # 关闭演示模式
demo : false # 关闭演示模式
tencent-lbs-key : TVDBZ-TDILD-4ON4B-PFDZA-RNLKH-VVF6E # QQ 地图的密钥 https://lbs.qq.com/service/staticV2/staticGuide/staticDoc
tencent-lbs-key : TVDBZ-TDILD-4ON4B-PFDZA-RNLKH-VVF6E # QQ 地图的密钥 https://lbs.qq.com/service/staticV2/staticGuide/staticDoc
@ -238,7 +247,6 @@ justauth:
client-secret : 1wTb7hYxnpT2TUbIeHGXGo7T0odav1ic10mLdyyATOw
client-secret : 1wTb7hYxnpT2TUbIeHGXGo7T0odav1ic10mLdyyATOw
agent-id : 1000004
agent-id : 1000004
ignore-check-redirect-uri : true
ignore-check-redirect-uri : true
# noinspection SpringBootApplicationYaml
WECHAT_MINI_APP : # 微信小程序
WECHAT_MINI_APP : # 微信小程序
client-id : ${wx.miniapp.appid}
client-id : ${wx.miniapp.appid}
client-secret : ${wx.miniapp.secret}
client-secret : ${wx.miniapp.secret}
@ -252,4 +260,9 @@ justauth:
type : REDIS
type : REDIS
prefix : 'social_auth_state:' # 缓存前缀,目前只对 Redis 缓存生效,默认 JUSTAUTH::STATE::
prefix : 'social_auth_state:' # 缓存前缀,目前只对 Redis 缓存生效,默认 JUSTAUTH::STATE::
timeout : 24h # 超时时长,目前只对 Redis 缓存生效,默认 3 分钟
timeout : 24h # 超时时长,目前只对 Redis 缓存生效,默认 3 分钟
io:
port : 7070
host : 127.0 .0 .1
xor:
massage : 151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515
type : mobile