原创2022/8/5小于 1 分钟
简介
H2是Java编写的一款内嵌式数据库,支持内存和文件两种方式存储数据。
SpringBoot整合
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
原创2022/7/18小于 1 分钟