application-test.yml
2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
mybatis-plus:
configuration:
cache-enabled: false
call-setters-on-nulls: true
jdbc-type-for-null: 'null'
map-underscore-to-camel-case: true
log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
global-config:
db-config:
capital-mode: false
field-strategy: NOT_NULL
id-type: AUTO
logic-delete-field: enable_flag
logic-delete-value: 20
logic-not-delete-value: 10
mapper-locations: classpath:/mapper/**.xml
type-aliases-package: com.canrd.shop.**.dto
#spring:
# datasource:
# dynamic:
# primary: overtime #设置默认的数据源或者数据源组,默认值即为master
# strict: false #设置严格模式,默认false不启动. 启动后在未匹配到指定数据源时候会抛出异常,不启动则使用默认数据源.
# datasource:
# wms_warehouse:
# url: jdbc:mysql://127.0.0.1:3306/overtime?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai&useSSL=false&autoReconnect=true&failOverReadOnly=false&maxReconnects=10&allowMultiQueries=true&useAffectedRows=true&autoReconnectForPools=true&rewriteBatchedStatements=true
# username: root
# password: root
# driver-class-name: com.mysql.cj.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
# druid:
# initial-size: 5
# max-active: 20
# max-evictable-idle-time-millis: 300000
# max-wait: 60000
# min-evictable-idle-time-millis: 300000
# min-idle: 5
# time-between-eviction-runs-millis: 60000
# type: com.alibaba.druid.pool.DruidDataSource
spring:
servlet:
multipart:
enabled: true
max-file-size: 100MB
max-request-size: 20MB
file-size-threshold: 20MB
datasource:
db-type: com.alibaba.druid.pool.DruidDataSource
driverClassName: com.mysql.cj.jdbc.Driver
initial-size: 5
max-active: 30
max-wait: 30000
min-idle: 5
#配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
timeBetweenEvictionRunsMillis: 30000
#配置一个连接在池中最小生存的时间,单位是毫秒,30000=30s
minEvictableIdleTimeMillis: 30000
validationQuery: SELECT 'x'
testWhileIdle: true
testOnBorrow: true
testOnReturn: true
password: canrd@2024
time-between-eviction-runs-millis: 1000
url: jdbc:mysql://39.108.227.113:3307/canrd_overseas?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai&useSSL=false&autoReconnect=true&failOverReadOnly=false&maxReconnects=10&allowMultiQueries=true&useAffectedRows=true&autoReconnectForPools=true
username: root
logging:
config: classpath:log4j2-dev.xml