提交 | 用户 | 时间
|
97edd7
|
1 |
--- #################### 数据库相关配置 #################### |
H |
2 |
spring: |
|
3 |
datasource: |
|
4 |
druid: # Druid 【监控】相关的全局配置 |
|
5 |
web-stat-filter: |
|
6 |
enabled: true |
|
7 |
stat-view-servlet: |
|
8 |
enabled: true |
|
9 |
allow: # 设置白名单,不填则允许所有访问 |
|
10 |
url-pattern: /druid/* |
|
11 |
login-username: # 控制台管理用户名和密码 |
|
12 |
login-password: |
|
13 |
filter: |
|
14 |
stat: |
|
15 |
enabled: true |
|
16 |
log-slow-sql: true # 慢 SQL 记录 |
|
17 |
slow-sql-millis: 100 |
|
18 |
merge-sql: true |
|
19 |
wall: |
|
20 |
config: |
|
21 |
multi-statement-allow: true |
|
22 |
dynamic: # 多数据源配置 |
|
23 |
druid: # Druid 【连接池】相关的全局配置 |
|
24 |
initial-size: 1 # 初始连接数 |
|
25 |
min-idle: 1 # 最小连接池数量 |
|
26 |
max-active: 20 # 最大连接池数量 |
|
27 |
max-wait: 600000 # 配置获取连接等待超时的时间,单位:毫秒 |
|
28 |
time-between-eviction-runs-millis: 60000 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位:毫秒 |
|
29 |
min-evictable-idle-time-millis: 300000 # 配置一个连接在池中最小生存的时间,单位:毫秒 |
|
30 |
max-evictable-idle-time-millis: 900000 # 配置一个连接在池中最大生存的时间,单位:毫秒 |
|
31 |
validation-query: SELECT 1 FROM DUAL # 配置检测连接是否有效 |
|
32 |
test-while-idle: true |
|
33 |
test-on-borrow: false |
|
34 |
test-on-return: false |
|
35 |
primary: master |
|
36 |
datasource: |
|
37 |
master: |
|
38 |
url: jdbc:mysql://172.16.8.100:3306/iailab_expert_tenant_shasteel?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 |
|
39 |
# url: jdbc:mysql://127.0.0.1:3306/iailab_expert_tenant_shasteel?useSSL=true&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai # MySQL Connector/J 5.X 连接的示例 |
|
40 |
# url: jdbc:postgresql://127.0.0.1:5432/iailab_expert_tenant_shasteel # PostgreSQL 连接的示例 |
|
41 |
# url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 |
|
42 |
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=iailab_expert_tenant_shasteel # SQLServer 连接的示例 |
|
43 |
# url: jdbc:dm://10.211.55.4:5236?schema=IAILAB_FAST # DM 连接的示例 |
|
44 |
username: root |
|
45 |
password: 123456 |
|
46 |
# username: sa # SQL Server 连接的示例 |
|
47 |
# password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W # SQL Server 连接的示例 |
|
48 |
# username: SYSDBA # DM 连接的示例 |
|
49 |
# password: SYSDBA # DM 连接的示例 |
|
50 |
slave: # 模拟从库,可根据自己需要修改 |
|
51 |
lazy: true # 开启懒加载,保证启动速度 |
|
52 |
url: jdbc:mysql://127.0.0.1:3306/iailab_expert_tenant_shasteel?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true |
|
53 |
username: root |
|
54 |
password: 123456 |
|
55 |
|
|
56 |
# Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优 |
|
57 |
redis: |
|
58 |
host: 127.0.0.1 # 地址 |
|
59 |
port: 6379 # 端口 |
|
60 |
database: 8 # 数据库索引 |
|
61 |
password: 123456 # 密码,建议生产环境开启 |
|
62 |
|
|
63 |
--- #################### 定时任务相关配置 #################### |
|
64 |
|
|
65 |
xxl: |
|
66 |
job: |
|
67 |
enabled: true # 是否开启调度中心,默认为 true 开启 |
|
68 |
admin: |
|
69 |
addresses: http://172.16.8.100:9090/xxl-job-admin # 调度中心部署跟地址 |
|
70 |
|
|
71 |
--- #################### 微信公众号、小程序相关配置 #################### |
|
72 |
wx: |
|
73 |
mp: # 公众号配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-mp-spring-boot-starter/README.md 文档 |
|
74 |
# app-id: wx041349c6f39b268b |
|
75 |
# secret: 5abee519483bc9f8cb37ce280e814bd0 |
|
76 |
app-id: wx5b23ba7a5589ecbb # 测试号 |
|
77 |
secret: 2a7b3b20c537e52e74afd395eb85f61f |
|
78 |
# 存储配置,解决 AccessToken 的跨节点的共享 |
|
79 |
config-storage: |
|
80 |
type: RedisTemplate # 采用 RedisTemplate 操作 Redis,会自动从 Spring 中获取 |
|
81 |
key-prefix: wx # Redis Key 的前缀 |
|
82 |
http-client-type: HttpClient # 采用 HttpClient 请求微信公众号平台 |
|
83 |
miniapp: # 小程序配置(必填),参见 https://github.com/Wechat-Group/WxJava/blob/develop/spring-boot-starters/wx-java-miniapp-spring-boot-starter/README.md 文档 |
|
84 |
# appid: wx62056c0d5e8db250 |
|
85 |
# secret: 333ae72f41552af1e998fe1f54e1584a |
|
86 |
appid: wx63c280fe3248a3e7 # wenhualian的接口测试号 |
|
87 |
secret: 6f270509224a7ae1296bbf1c8cb97aed |
|
88 |
config-storage: |
|
89 |
type: RedisTemplate # 采用 RedisTemplate 操作 Redis,会自动从 Spring 中获取 |
|
90 |
key-prefix: wa # Redis Key 的前缀 |
|
91 |
http-client-type: HttpClient # 采用 HttpClient 请求微信公众号平台 |
|
92 |
|
|
93 |
--- #################### 平台相关配置 #################### |
|
94 |
|
|
95 |
# 平台配置项,设置当前项目所有自定义的配置 |
|
96 |
iailab: |
|
97 |
env: # 多环境的配置项 |
|
98 |
tag: ${HOSTNAME} |
|
99 |
captcha: |
|
100 |
enable: false # 本地环境,暂时关闭图片验证码,方便登录等接口的测试 |
|
101 |
security: |
|
102 |
mock-enable: true |
|
103 |
access-log: # 访问日志的配置项 |
|
104 |
enable: false |
|
105 |
|
|
106 |
sms-code: # 短信验证码相关的配置项 |
|
107 |
expire-times: 10m |
|
108 |
send-frequency: 1m |
|
109 |
send-maximum-quantity-per-day: 10 |
|
110 |
begin-code: 9999 # 这里配置 9999 的原因是,测试方便。 |
|
111 |
end-code: 9999 # 这里配置 9999 的原因是,测试方便。 |
|
112 |
|
|
113 |
justauth: |
|
114 |
enabled: true |
|
115 |
type: |
|
116 |
DINGTALK: # 钉钉 |
|
117 |
client-id: dingvrnreaje3yqvzhxg |
|
118 |
client-secret: i8E6iZyDvZj51JIb0tYsYfVQYOks9Cq1lgryEjFRqC79P3iJcrxEwT6Qk2QvLrLI |
|
119 |
ignore-check-redirect-uri: true |
|
120 |
WECHAT_ENTERPRISE: # 企业微信 |
|
121 |
client-id: wwd411c69a39ad2e54 |
|
122 |
client-secret: 1wTb7hYxnpT2TUbIeHGXGo7T0odav1ic10mLdyyATOw |
|
123 |
agent-id: 1000004 |
|
124 |
ignore-check-redirect-uri: true |
|
125 |
# noinspection SpringBootApplicationYaml |
|
126 |
WECHAT_MINI_APP: # 微信小程序 |
|
127 |
client-id: ${wx.miniapp.appid} |
|
128 |
client-secret: ${wx.miniapp.secret} |
|
129 |
ignore-check-redirect-uri: true |
|
130 |
ignore-check-state: true # 微信小程序,不会使用到 state,所以不进行校验 |
|
131 |
WECHAT_MP: # 微信公众号 |
|
132 |
client-id: ${wx.mp.app-id} |
|
133 |
client-secret: ${wx.mp.secret} |
|
134 |
ignore-check-redirect-uri: true |
|
135 |
cache: |
|
136 |
type: REDIS |
|
137 |
prefix: 'social_auth_state:' # 缓存前缀,目前只对 Redis 缓存生效,默认 JUSTAUTH::STATE:: |
|
138 |
timeout: 24h # 超时时长,目前只对 Redis 缓存生效,默认 3 分钟 |