H2 数据库部署 与 SpringBoot 配置 H2 数据源

H2-H2Database数据库部署:

1.官方下载 Zip 包,如:h2-2019-10-14.zip
2.解压,直接执行 bin 目录下的 h2.bat、h2.sh 文件。
3.也可执行 service 目录下的命令安装为 Windows 系统服务。

注:默认启动服务后会在当前用户根目录中生成 `.h2.server.properties` 文件,可增加、修改相关的启动参数,如启动端口、Web Tool 访问密码等。

例:
webAdminPassword=123456
webAllowOthers=false
webPort=8082
webSSL=false

SpringBoot 配置 H2 数据源:

配置 `application.properties`:

JPA设置:

spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.format_sql=true
## 展示 SQL 参数:
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=trace


H2数据库:

## 数据库连接设置
spring.datasource.url=jdbc:h2:./data/test
spring.datasource.username=sa
spring.datasource.password=123456
spring.datasource.driverClassName=org.h2.Driver


## h2 web console设置

spring.datasource.platform=h2

spring.h2.console.enabled=true
spring.h2.console.path=/h2
spring.h2.console.settings.web-allow-others=true

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值