27 lines
698 B
YAML
27 lines
698 B
YAML
spring:
|
|
datasource:
|
|
driver-class-name: org.h2.Driver
|
|
url: jdbc:h2:mem:lpt_test;MODE=MySQL;DATABASE_TO_LOWER=TRUE;CASE_INSENSITIVE_IDENTIFIERS=TRUE;NON_KEYWORDS=USER;DB_CLOSE_DELAY=-1
|
|
username: sa
|
|
password:
|
|
flyway:
|
|
enabled: true
|
|
locations: classpath:db/migration
|
|
baseline-on-migrate: true
|
|
jackson:
|
|
time-zone: UTC
|
|
date-format: yyyy-MM-dd'T'HH:mm:ss'Z'
|
|
|
|
mybatis-plus:
|
|
configuration:
|
|
log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
|
|
|
|
sa-token:
|
|
token-name: satoken
|
|
timeout: 2592000
|
|
active-timeout: -1
|
|
is-concurrent: true
|
|
is-share: true
|
|
token-style: uuid
|
|
is-log: false
|