这章介绍Spring Boot JPA 访问H2 Database,在项目开发过程中都会连接本地数据库进行业务开发与数据验证,这个时候使用H2 就显得轻便与实用了,在生产线上也可把他当来数据库或内存数据来使用。下文开始演示H2的使用。
H2 Database 优点介绍:
Welcome to H2, the Java SQL database. The main features of H2 are:
Very fast, open source, JDBC API
非常快,开源,JDBC API
Embedded and server modes; in-memory databases
嵌入式和服务器模式;内存数据库
Browser based Console application
基于浏览器的控制台应用程序
Small footprint: around 1.5 MB jar file size
约1.5 MB JAR文件大小
官网下载
http://h2database.com/html/main.html
请根据自身环境下载:
本地安装后启动:
Paste_Image.png请选择自已熟悉的语言与登录模式
引入依赖
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
修改application.properties配置
spring.datasource.url=jdbc:h2:file:~/test
spring.datasource.username=sa
spring.datasource.password=
spring.datasource.driver-class-name=org.h2.Driver
完成后,直接使用 **Spring Boot JPA访问Mysql **,中的UserTest.java进行单元测试,不需要做任何修改
http://www.jianshu.com/writer#/notebooks/10854929/notes/10190080
如图:
登录H2 数据库验证数据正确性:
Paste_Image.png
网友评论