linfeng-community/src/main/resources/application-prod.yml

40 lines
1.3 KiB
YAML
Raw Normal View History

2022-04-17 20:22:06 +08:00
spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
druid:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/linfengcommunity?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&useSSL=false
username: root
password: yourpassword
initial-size: 10
max-active: 100
min-idle: 10
max-wait: 60000
pool-prepared-statements: true
max-pool-prepared-statement-per-connection-size: 20
time-between-eviction-runs-millis: 60000
min-evictable-idle-time-millis: 300000
test-while-idle: true
test-on-borrow: false
test-on-return: false
stat-view-servlet:
enabled: true
url-pattern: /druid/*
2023-03-27 15:33:07 +08:00
#数据库监控账号密码 线上环境需开启
login-username: admin
login-password: admin
2022-04-17 20:22:06 +08:00
filter:
stat:
log-slow-sql: true
slow-sql-millis: 1000
merge-sql: false
wall:
config:
multi-statement-allow: true
logging:
level:
io.linfeng: Info
org.springframework.web: Info
io.swagger.*: ERROR