mirror of https://gitee.com/stylefeng/guns
24 lines
811 B
YAML
24 lines
811 B
YAML
# Mysql数据库
|
|
spring:
|
|
datasource:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://114.215.203.183:3306/guns?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=CTT
|
|
username: guest
|
|
password: p8HMTBEapAPPmXB8!
|
|
|
|
# 连接池大小根据实际情况调整
|
|
max-active: 100
|
|
max-pool-prepared-statement-per-connection-size: 100
|
|
druid:
|
|
initialSize: 50
|
|
minIdle: 50
|
|
maxActive: 200
|
|
maxWait: 60000
|
|
timeBetweenEvictionRunsMillis: 60000
|
|
minEvictableIdleTimeMillis: 300000
|
|
maxEvictableIdleTimeMillis: 900000
|
|
validationQuery: SELECT 1 FROM DUAL
|
|
testWhileIdle: true
|
|
testOnBorrow: false
|
|
testOnReturn: false
|
|
poolPreparedStatements: false |