mirror of
https://github.com/JeffLi1993/springboot-learning-example.git
synced 2026-03-13 21:43:45 +08:00
16 lines
378 B
Properties
16 lines
378 B
Properties
## 开启 H2 数据库
|
|
spring.h2.console.enabled=true
|
|
|
|
## 配置 H2 数据库连接信息
|
|
spring.datasource.url=jdbc:h2:mem:testdb
|
|
spring.datasource.driverClassName=org.h2.Driver
|
|
spring.datasource.username=sa
|
|
spring.datasource.password=
|
|
|
|
|
|
|
|
## 是否显示 SQL 语句
|
|
spring.jpa.show-sql=true
|
|
hibernate.dialect=org.hibernate.dialect.H2Dialect
|
|
hibernate.hbm2ddl.auto=create
|