【boot3踩坑记录】springboot3&Druid
#druid
spring:
datasource:
username: study
password: fei123...
#?serverTimezone=UTC解决时区的报错
url: jdbc:mysql://localhost:3306/springBoot?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
driver-class-name:
type: # 自定义数据源
#Spring Boot 默认是不注入这些属性值的,需要自己绑定
#druid 数据源专有配置
initialSize: 5
minIdle: 5
maxActive: 20
maxWait: 60000
timeBetweenEvictionRunsMillis: 60000
minEvictableIdleTimeMillis: 300000
validationQuery: SELECT 1 FROM DUAL
testWhileIdle: true
testOnBorrow: false
testOnReturn: false
poolPreparedStatements: true
#配置监控统计拦截的filters,stat:监控统计、log4j:日志记录、wall:防御sql注入
#如果允许时报错 : .
#则导入 log4j 依赖即可,Maven 地址:/artifact/log4j/log4j
filters: stat,wall,log4j
maxPoolPreparedStatementPerConnectionSize: 20
useGlobalDataSourceStat: true
connectionProperties: =true;=500
---
#starter
spring:
datasource:
druid:
username: study
password: fei123...
#?serverTimezone=UTC解决时区的报错
url: jdbc:mysql://localhost:3306/springBoot?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
driver-class-name:
db-type:
#Spring Boot 默认是不注入这些属性值的,需要自己绑定
#druid 数据源专有配置
initial-size: 5
min-idle: 5
max-active: 20
max-wait: 60000
time-between-eviction-runs-millis: 60000
min-evictable-idle-time-millis: 300000
validation-query: SELECT 1 FROM DUAL
test-while-idle: true
test-on-borrow: false
test-on-return: false
pool-prepared-statements: true
#配置监控统计拦截的filters,stat:监控统计、log4j:日志记录、wall:防御sql注入
#如果允许时报错 : .
#则导入 log4j 依赖即可,Maven 地址:/artifact/log4j/log4j
max-pool-prepared-statement-per-connection-size: 20
use-global-data-source-stat: true
filter:
stat:
merge-sql: true
slow-sql-millis: 50
proxy-filters: stat,wall,log4j