为了在 Spring Boot 应用程序中启用 H2 In-Memory Database,您必须在初始化程序中包含“h2”依赖项。 例如:
spring init -dweb,jpa,h2 demo-h2
H2 数据库提供了一个称为 H2 控制台的 Web 界面来查看数据。 您可以在 src/main/resources/application.properties 中启用 h2 控制台
# Enabling H2 Console spring.h2.console.enabled=true
您可以在以下地址启动 H2 控制台:http://localhost:8080/h2-console
就 H2 而言,一旦 Spring Boot 在类路径中看到 H2,它就会自动配置一个类似于您在下面看到的数据源:
spring.datasource.url=jdbc:h2:mem:testdb spring.datasource.driverClassName=org.h2.Driver spring.datasource.username=sa spring.datasource.password= spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : http://www.masterspringboot.com/data-access/jpa/how-to-connect-to-h2-console-in-spring-boot
内容来源于网络,如有侵权,请联系作者删除!