18 lines
386 B
YAML
18 lines
386 B
YAML
|
|
spring:
|
||
|
|
datasource:
|
||
|
|
type: com.alibaba.druid.pool.DruidDataSource
|
||
|
|
driverClassName: org.h2.Driver
|
||
|
|
url: jdbc:h2:mem:ry-vue;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
||
|
|
username: sa
|
||
|
|
password:
|
||
|
|
h2:
|
||
|
|
console:
|
||
|
|
enabled: true
|
||
|
|
path: /h2-console
|
||
|
|
sql:
|
||
|
|
init:
|
||
|
|
mode: always
|
||
|
|
schema-locations: classpath*:schema/*.sql
|
||
|
|
|
||
|
|
pagehelper:
|
||
|
|
helperDialect: h2
|