如何设置h2 console

想查看H2数据库的话,需要在application.properties中进行设置:

spring.application.name=jpa-rest
server.port=8888
spring.h2.console.enabled=true
spring.h2.console.path=/h2console/
spring.datasource.generate-unique-name=false
spring.datasource.name=jpa-rest

然后访问url: http://localhost:8888/h2console

 点击连接即可

然后就可以愉快的查询了。

 

posted @ 2024-08-16 23:27  脱缰的野猪  阅读(38)  评论(0编辑  收藏  举报