Skip to content

Files

Latest commit

 

History

History

h2db-spring

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

h2-console

开启h2-console:

spring:
  h2:
    console:
      enabled: true

并启动SpringBoot项目后,可在浏览器中访问 http://localhost:8080/h2-console 来查询h2数据库

相关登录参数

  • Drive Class: org.h2.Driver

  • JDBC URL: jdbc:h2:./data/db2/test_spring

  • username: sa

  • password: password