|
@@ -1,6 +1,3 @@
|
|
|
---- # 临时文件存储位置 避免临时文件被系统清理报错
|
|
|
|
|
-spring.servlet.multipart.location: /ruoyi/server/temp
|
|
|
|
|
-
|
|
|
|
|
--- # 监控中心配置
|
|
--- # 监控中心配置
|
|
|
spring.boot.admin.client:
|
|
spring.boot.admin.client:
|
|
|
# 增加客户端开关
|
|
# 增加客户端开关
|
|
@@ -20,16 +17,20 @@ spring.boot.admin.client:
|
|
|
snail-job:
|
|
snail-job:
|
|
|
enabled: true
|
|
enabled: true
|
|
|
# 需要在 SnailJob 后台组管理创建对应名称的组,然后创建任务的时候选择对应的组,才能正确分派任务
|
|
# 需要在 SnailJob 后台组管理创建对应名称的组,然后创建任务的时候选择对应的组,才能正确分派任务
|
|
|
- group: "ruoyi_group"
|
|
|
|
|
|
|
+ # group: "ruoyi_group"
|
|
|
|
|
+ group: "smsb_group"
|
|
|
# SnailJob 接入验证令牌 详见 script/sql/snail_job.sql `sj_group_config` 表
|
|
# SnailJob 接入验证令牌 详见 script/sql/snail_job.sql `sj_group_config` 表
|
|
|
- token: "SJ_cKqBTPzCsWA3VyuCfFoccmuIEGXjr5KT"
|
|
|
|
|
|
|
+ # token: "SJ_cKqBTPzCsWA3VyuCfFoccmuIEGXjr5KT"
|
|
|
|
|
+ token: "SJ_Wyz3dmsdbDOkDujOTSSoBjGQP1BMsVnj"
|
|
|
server:
|
|
server:
|
|
|
- host: 127.0.0.1
|
|
|
|
|
|
|
+ host: 117.73.13.40
|
|
|
port: 17888
|
|
port: 17888
|
|
|
# 详见 script/sql/snail_job.sql `sj_namespace` 表
|
|
# 详见 script/sql/snail_job.sql `sj_namespace` 表
|
|
|
- namespace: ${spring.profiles.active}
|
|
|
|
|
|
|
+ #namespace: ${spring.profiles.active}
|
|
|
|
|
+ namespace: dev
|
|
|
# 随主应用端口飘逸
|
|
# 随主应用端口飘逸
|
|
|
- port: 2${server.port}
|
|
|
|
|
|
|
+ # port: 2${server.port}
|
|
|
|
|
+ port: 28080
|
|
|
# 客户端ip指定
|
|
# 客户端ip指定
|
|
|
host:
|
|
host:
|
|
|
|
|
|
|
@@ -40,7 +41,7 @@ spring:
|
|
|
# 动态数据源文档 https://www.kancloud.cn/tracy5546/dynamic-datasource/content
|
|
# 动态数据源文档 https://www.kancloud.cn/tracy5546/dynamic-datasource/content
|
|
|
dynamic:
|
|
dynamic:
|
|
|
# 性能分析插件(有性能损耗 不建议生产环境使用)
|
|
# 性能分析插件(有性能损耗 不建议生产环境使用)
|
|
|
- p6spy: false
|
|
|
|
|
|
|
+ p6spy: true
|
|
|
# 设置默认的数据源或者数据源组,默认值即为 master
|
|
# 设置默认的数据源或者数据源组,默认值即为 master
|
|
|
primary: master
|
|
primary: master
|
|
|
# 严格模式 匹配不到数据源则报错
|
|
# 严格模式 匹配不到数据源则报错
|
|
@@ -52,9 +53,9 @@ spring:
|
|
|
driverClassName: com.mysql.cj.jdbc.Driver
|
|
driverClassName: com.mysql.cj.jdbc.Driver
|
|
|
# jdbc 所有参数配置参考 https://lionli.blog.csdn.net/article/details/122018562
|
|
# jdbc 所有参数配置参考 https://lionli.blog.csdn.net/article/details/122018562
|
|
|
# rewriteBatchedStatements=true 批处理优化 大幅提升批量插入更新删除性能(对数据库有性能损耗 使用批量操作应考虑性能问题)
|
|
# rewriteBatchedStatements=true 批处理优化 大幅提升批量插入更新删除性能(对数据库有性能损耗 使用批量操作应考虑性能问题)
|
|
|
- url: jdbc:mysql://localhost:3306/ry-vue?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&autoReconnect=true&rewriteBatchedStatements=true&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
|
|
|
|
|
|
|
+ url: jdbc:mysql://localhost:3306/smsb-plus?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&autoReconnect=true&rewriteBatchedStatements=true&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
|
|
|
username: root
|
|
username: root
|
|
|
- password: root
|
|
|
|
|
|
|
+ password: password
|
|
|
# 从库数据源
|
|
# 从库数据源
|
|
|
slave:
|
|
slave:
|
|
|
lazy: true
|
|
lazy: true
|
|
@@ -63,24 +64,6 @@ spring:
|
|
|
url: jdbc:mysql://localhost:3306/ry-vue?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&autoReconnect=true&rewriteBatchedStatements=true&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
|
|
url: jdbc:mysql://localhost:3306/ry-vue?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&autoReconnect=true&rewriteBatchedStatements=true&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
|
|
|
username:
|
|
username:
|
|
|
password:
|
|
password:
|
|
|
-# oracle:
|
|
|
|
|
-# type: ${spring.datasource.type}
|
|
|
|
|
-# driverClassName: oracle.jdbc.OracleDriver
|
|
|
|
|
-# url: jdbc:oracle:thin:@//localhost:1521/XE
|
|
|
|
|
-# username: ROOT
|
|
|
|
|
-# password: root
|
|
|
|
|
-# postgres:
|
|
|
|
|
-# type: ${spring.datasource.type}
|
|
|
|
|
-# driverClassName: org.postgresql.Driver
|
|
|
|
|
-# url: jdbc:postgresql://localhost:5432/postgres?useUnicode=true&characterEncoding=utf8&useSSL=true&autoReconnect=true&reWriteBatchedInserts=true
|
|
|
|
|
-# username: root
|
|
|
|
|
-# password: root
|
|
|
|
|
-# sqlserver:
|
|
|
|
|
-# type: ${spring.datasource.type}
|
|
|
|
|
-# driverClassName: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
|
|
|
-# url: jdbc:sqlserver://localhost:1433;DatabaseName=tempdb;SelectMethod=cursor;encrypt=false;rewriteBatchedStatements=true
|
|
|
|
|
-# username: SA
|
|
|
|
|
-# password: root
|
|
|
|
|
hikari:
|
|
hikari:
|
|
|
# 最大连接池数量
|
|
# 最大连接池数量
|
|
|
maxPoolSize: 20
|
|
maxPoolSize: 20
|
|
@@ -101,13 +84,13 @@ spring:
|
|
|
spring.data:
|
|
spring.data:
|
|
|
redis:
|
|
redis:
|
|
|
# 地址
|
|
# 地址
|
|
|
- host: localhost
|
|
|
|
|
|
|
+ host: 117.73.3.135
|
|
|
# 端口,默认为6379
|
|
# 端口,默认为6379
|
|
|
port: 6379
|
|
port: 6379
|
|
|
# 数据库索引
|
|
# 数据库索引
|
|
|
- database: 0
|
|
|
|
|
|
|
+ database: 6
|
|
|
# redis 密码必须配置
|
|
# redis 密码必须配置
|
|
|
- password: ruoyi123
|
|
|
|
|
|
|
+ password: Hycpb@123
|
|
|
# 连接超时时间
|
|
# 连接超时时间
|
|
|
timeout: 10s
|
|
timeout: 10s
|
|
|
# 是否开启ssl
|
|
# 是否开启ssl
|
|
@@ -190,6 +173,7 @@ sms:
|
|
|
signature: 您的短信签名
|
|
signature: 您的短信签名
|
|
|
sdk-app-id: 您的sdkAppId
|
|
sdk-app-id: 您的sdkAppId
|
|
|
|
|
|
|
|
|
|
+
|
|
|
--- # 三方授权
|
|
--- # 三方授权
|
|
|
justauth:
|
|
justauth:
|
|
|
# 前端外网访问地址
|
|
# 前端外网访问地址
|
|
@@ -208,7 +192,7 @@ justauth:
|
|
|
client-id: 449c4*********937************759
|
|
client-id: 449c4*********937************759
|
|
|
client-secret: ac7***********1e0************28d
|
|
client-secret: ac7***********1e0************28d
|
|
|
redirect-uri: ${justauth.address}/social-callback?source=topiam
|
|
redirect-uri: ${justauth.address}/social-callback?source=topiam
|
|
|
- scopes: [ openid, email, phone, profile ]
|
|
|
|
|
|
|
+ scopes: [openid, email, phone, profile]
|
|
|
qq:
|
|
qq:
|
|
|
client-id: 10**********6
|
|
client-id: 10**********6
|
|
|
client-secret: 1f7d08**********5b7**********29e
|
|
client-secret: 1f7d08**********5b7**********29e
|