--- #################### 数据库相关配置 ####################
|
spring:
|
autoconfigure:
|
exclude:
|
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
|
# - de.codecentric.boot.admin.server.config.AdminServerAutoConfiguration
|
# - de.codecentric.boot.admin.server.cloud.config.AdminServerDiscoveryAutoConfiguration
|
# - de.codecentric.boot.admin.server.ui.config.AdminServerUiAutoConfiguration
|
# - de.codecentric.boot.admin.client.config.SpringBootAdminClientAutoConfiguration
|
datasource:
|
druid:
|
web-stat-filter:
|
enabled: true
|
stat-view-servlet:
|
enabled: true
|
allow:
|
url-pattern: /druid/*
|
login-username:
|
login-password:
|
filter:
|
stat:
|
enabled: true
|
log-slow-sql: true
|
slow-sql-millis: 100
|
merge-sql: true
|
wall:
|
config:
|
multi-statement-allow: true
|
dynamic:
|
druid:
|
initial-size: 1
|
min-idle: 1
|
max-active: 20
|
max-wait: 600000
|
time-between-eviction-runs-millis: 60000
|
min-evictable-idle-time-millis: 300000
|
max-evictable-idle-time-millis: 900000
|
validation-query: SELECT 1 FROM DUAL
|
test-while-idle: true
|
test-on-borrow: false
|
test-on-return: false
|
primary: master
|
datasource:
|
master:
|
url: jdbc:mysql://172.16.8.100:3306/iailab_plat_system?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
|
# url: jdbc:mysql://127.0.0.1:3306/iailab-plat?useSSL=true&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
# url: jdbc:postgresql://127.0.0.1:5432/ruoyi-vue-pro
|
# url: jdbc:oracle:thin:@127.0.0.1:1521:xe
|
# url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=ruoyi-vue-pro
|
# url: jdbc:dm://10.211.55.4:5236?schema=RUOYI_VUE_PRO
|
username: root
|
password: 123456
|
# username: sa
|
# password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W
|
# username: SYSDBA
|
# password: SYSDBA
|
slave:
|
lazy: true
|
url: jdbc:mysql://172.16.8.100:3306/iailab-plat?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
|
username: root
|
password: 123456
|
|
redis:
|
host: 172.16.8.100
|
port: 6379
|
database: 0
|
password: 123456
|
|
--- #################### MQ 消息队列相关配置 ####################
|
rocketmq:
|
name-server: 172.16.8.100:9876
|
|
spring:
|
rabbitmq:
|
host: 172.16.8.200
|
port: 5672
|
username: admin
|
password: admin123
|
|
kafka:
|
bootstrap-servers: 172.16.8.100:9092
|
|
xxl:
|
job:
|
enabled: false
|
admin:
|
addresses: http://172.16.8.100:9090/xxl-job-admin
|
|
lock4j:
|
acquire-timeout: 3000
|
expire: 30000
|
|
--- #################### 监控相关配置 ####################
|
management:
|
endpoints:
|
web:
|
base-path: /actuator
|
exposure:
|
include: '*'
|
|
spring:
|
boot:
|
admin:
|
client:
|
instance:
|
service-host-type: IP
|
context-path: /admin
|
|
logging:
|
level:
|
com.iailab.module.infra.dal.mysql: debug
|
com.iailab.module.infra.dal.mysql.logger.ApiErrorLogMapper: INFO
|
com.iailab.module.infra.dal.mysql.file.FileConfigMapper: INFO
|
|
iailab:
|
env:
|
tag: ${HOSTNAME}
|
security:
|
mock-enable: true
|
access-log:
|
enable: false
|