37 lines
781 B
YAML
37 lines
781 B
YAML
server:
|
|
port: 8088
|
|
spring:
|
|
thymeleaf:
|
|
cache: false
|
|
datasource:
|
|
url: jdbc:mysql://localhost:3306/manager?allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC
|
|
username: root
|
|
password: 123456
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
hikari:
|
|
minimum-idle: 5
|
|
maximum-pool-size: 20
|
|
idle-timeout: 30000
|
|
pool-name: HikariCP
|
|
max-lifetime: 600000
|
|
connection-timeout: 30000
|
|
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 20MB
|
|
max-request-size: 20MB
|
|
|
|
|
|
mybatis-plus:
|
|
|
|
mapper-locations: classpath*:/mapper/**/*.xml
|
|
configuration:
|
|
database-id: mysql
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|
|
|
|
global-config:
|
|
db-config:
|
|
id-type: auto
|
|
|