-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapplication.yml
More file actions
39 lines (37 loc) · 977 Bytes
/
application.yml
File metadata and controls
39 lines (37 loc) · 977 Bytes
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
server:
port: 9880
servlet:
context-path: /iot
spring:
jackson:
date-format: yyyy-MM-dd HH:mm:ss
time-zone: GMT+8
servlet:
multipart:
max-file-size: 50MB
max-request-size: 100MB
enabled: true
profiles:
active: dev
datasource:
type: com.alibaba.druid.pool.DruidDataSource
druid:
driver-class-name: org.apache.iotdb.jdbc.IoTDBDriver
url: jdbc:iotdb://${IOTDB_HOST_DEV}:6667/
username: ${IOTDB_USERNAME_DEV}
password: ${IOTDB_PASSWORD_DEV}
initial-size: 5
max-active: 20
min-idle: 1
max-wait: 60000
remove-abandoned: true
remove-abandoned-timeout: 30
time-between-eviction-runs-millis: 60000
min-evictable-idle-time-millis: 300000
test-while-idle: false
test-on-borrow: false
test-on-return: false
mybatis-plus:
mapper-locations: classpath:/mapper/*.xml
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl