idea 中 springBoot 集成 h2 轻量级内存数据库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea 中 springBoot 集成 h2 轻量级内存数据库相关的知识,希望对你有一定的参考价值。
配置文件
#h2 数据库配置
#配置数据库连接地址
spring.datasource.url=jdbc:h2:sunniwell:sos
#配置数据库驱动
spring.datasource.driver-class-name=org.h2.Driver
#配置数据库用户名
spring.datasource.username=root
#配置数据库密码
spring.datasource.password=sunniwell
#配置能远程访问
spring.h2.console.settings.web-allow-others=true
#配置访问地址
spring.h2.console.path=/h2-console
#配置项目启动 h2就启动
spring.h2.console.enabled=true
#进行该配置后,每次启动程序,程序都会运行resources/db/schema.sql文件,对数据库的结构进行操作。
#spring.datasource.schema=classpath:db/schema.sql
#进行该配置后,每次启动程序,程序都会运行resources/db/data.sql文件,对数据库的数据操作。
#spring.datasource.data=classpath:db/data.sql
pom.xml
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
以上是关于idea 中 springBoot 集成 h2 轻量级内存数据库的主要内容,如果未能解决你的问题,请参考以下文章
在内存数据库中使用 H2 进行 Spring Boot 集成测试
H2DB 文件中的表不会出现在 IDEA 中,但会显示在 H2 控制台中