H2 控制台不显示

我已经阅读了几乎所有关于 H2 控制台的问题,但没有找到解决方案。当我点击 URL 时,我收到了Whitelabel Error Pagehttp://localhost:8080/h2-console。


我在我的项目中添加了以下依赖项:


<dependencies>

    <dependency>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-data-jpa</artifactId>

    </dependency>

    <dependency>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-web</artifactId>

    </dependency>


    <dependency>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-test</artifactId>

        <scope>test</scope>

    </dependency>

    <!-- https://mvnrepository.com/artifact/com.h2database/h2 -->

    <dependency>

        <groupId>com.h2database</groupId>

        <artifactId>h2</artifactId>

        <scope>runtime</scope>>

    </dependency>

</dependencies>

application.properties


spring.h2.console.enabled=true

spring.datasource.url=jdbc:h2

spring.datasource.driverClassName=org.h2.Driver

spring.datasource.username=sa

spring.datasource.password=

spring.jpa.database-platform=org.hibernate.dialect.H2Dialect

http://img2.mukewang.com/6448dfa4000139e705590280.jpg

慕森卡
浏览 127回答 1
1回答

紫衣仙女

在应用程序属性中添加spring.h2.console.path=/h2-consoleH2 的属性spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1spring.datasource.driverClassName=org.h2.Driverspring.datasource.username=saspring.datasource.password=spring.jpa.database-platform=org.hibernate.dialect.H2Dialectspring.h2.console.path=/h2-consoleDB_CLOSE_DELAY = -1 防止连接丢失更新对于直接来自 Spring Initialzr 的 Spring Boot 2.x:devtools 默认是http://127.0.0.1:8080/h2-console/POM: spring-boot-starter, h2, spring-boot-starter-web, spring-boot-devtools没有 devtools - 你需要在属性中设置它:spring.h2.console.enabled=true spring.h2.console.path=/h2-consolePOM: spring-boot-starter, h2, spring-boot-starter-web
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java