如何設定h2 console

脱缰的野猪發表於2024-08-16

想檢視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

點選連線即可

然後就可以愉快的查詢了。

相關文章