如何设置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
点击连接即可
然后就可以愉快的查询了。