1.引入pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
Springboot 2.x版本必须引入jdbc的依赖
2.配置.yml
spring:
datasource:
driver-class-name: org.h2.Driver
#本篇文章以h2的内存模式为例,h2还可以使用文件存储方式,test为h2数据库名
url: jdbc:h2:mem:test
#h2账号密码,完了会在web页面登入数据库用到
username: root
password: 123456
#配置h2数据库的web页面访问参数
h2:
console:
path: /h2
enabled: true
settings:
web-allow-others: true
#新的数据库初始化执行sql的配置已经是这种,也可以不做配置
sql:
init:
schema-locations: classpath:db/schema.sql
3.启动项目,在浏览器页面访问h2
访问路径:http://localhost:10018/{context-path}/h2/
Driver Class
为h2数据库驱动org.h2.Driver
JDBC URL
为h2数据库jdbc访问地址jdbc:h2:mem:test
User Name
yml配置文件中的h2账号root
Password
yml配置文件中的h2密码123456