2021-11-17 10:45:58 +08:00
|
|
|
--- # 监控配置
|
|
|
|
spring:
|
|
|
|
boot:
|
|
|
|
admin:
|
|
|
|
# Spring Boot Admin Client 客户端的相关配置
|
|
|
|
client:
|
|
|
|
# 增加客户端开关
|
|
|
|
enabled: true
|
|
|
|
# 设置 Spring Boot Admin Server 地址
|
|
|
|
url: http://172.30.0.90:9090/admin
|
|
|
|
instance:
|
2022-01-27 11:43:56 +08:00
|
|
|
service-host-type: IP
|
2021-11-17 10:45:58 +08:00
|
|
|
username: ruoyi
|
|
|
|
password: 123456
|
|
|
|
|
2021-10-20 13:32:53 +08:00
|
|
|
--- # 数据库配置
|
|
|
|
spring:
|
|
|
|
datasource:
|
|
|
|
type: com.zaxxer.hikari.HikariDataSource
|
|
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
2021-11-01 13:49:11 +08:00
|
|
|
url: jdbc:mysql://172.30.0.36:3306/ry-vue?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&serverTimezone=Asia/Shanghai
|
2021-10-20 13:32:53 +08:00
|
|
|
username: root
|
|
|
|
password: root
|
|
|
|
hikari:
|
|
|
|
auto-commit: true
|
|
|
|
connection-test-query: SELECT 1
|
|
|
|
connection-timeout: 10000
|
|
|
|
idle-timeout: 30000
|
|
|
|
max-lifetime: 900000
|
|
|
|
maximum-pool-size: 30
|
|
|
|
minimum-idle: 10
|
|
|
|
pool-name: HikariCP
|
|
|
|
validation-timeout: 1000
|
|
|
|
|
|
|
|
--- # 邮件配置
|
|
|
|
spring:
|
|
|
|
mail:
|
|
|
|
from: xxx@qq.com
|
|
|
|
host: smtp.qq.com
|
|
|
|
username: xxx@qq.com
|
|
|
|
password: xxx
|
|
|
|
port: 25
|
|
|
|
properties:
|
|
|
|
mail:
|
|
|
|
smtp:
|
|
|
|
auth: true
|
|
|
|
socketFactory:
|
|
|
|
class: javax.net.ssl.SSLSocketFactory
|
|
|
|
starttls:
|
|
|
|
enable: true
|
|
|
|
required: true
|