123456789101112131415161718192021222324252627282930313233343536373839404142 |
- server:
- port: 8081
- file:
- path: F:/upload/chuanyi/
- spring:
- servlet:
- multipart:
- max-file-size: 100MB
- max-request-size: 500MB
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://localhost:3306/ei_rptdb?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&serverTimezone=GMT%2B8
- username: root
- password: root
- hikari:
- minimum-idle: 100
- connection-timeout: 30000
- idle-timeout: 1800000
- maximum-pool-size: 500
- max-lifetime: 0
- resources:
- static-locations: classpath:/static/,,file:${file.path},file:${file.location}
- redis:
- database: 0
- host: 127.0.0.1
- port: 6379
- # password: 123456
- jedis:
- pool:
- max-active: 50
- max-idle: 20
- min-idle: 5
- # max-wait: 5
- mybatis:
- configuration:
- #开启sql日志文件
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- logging:
- level:
- root: error
|