> 技术文档 > spring boot h2数据库无法链接问题

spring boot h2数据库无法链接问题


spring boot h2数据库无法链接问题

 datasource: # 数据库连接地址:H2在2.x后,不再支持创建数据库,需要手工创建,如:touch test.mv.db, # 否则会报“Database file not found”错误 url: jdbc:h2:file:~/test driver-class-name: org.h2.Driver username: test password: test

如果密码或用户名问题,可以删除test.mv.db,再重新创建即可。