H2控制台未打开

时间:2018-12-13 15:40:01

标签: java spring-boot h2

我有一个基于Maven的springBoot应用程序,嵌入在内存H2数据库中。我的应用程序在55000端口上运行。当我从SpringBoot运行时,我可以使用/ H2映射打开我的H2控制台,但是当我使用命令java -Dserver.port = 55000 application.jar从控制台运行jar文件时,在/ H2路径上单击时出现错误的Whitelabel页面

此应用程序没有针对/ error的显式映射,因此您将其视为备用。

我的application.properties文件如下,

spring.h2.console.enabled=true
spring.h2.console.settings.web-allow-others=true
spring.h2.console.path=/H2
spring.h2.console.settings.trace=true 
spring.datasource.url=jdbc:h2:./applicationDatabase
spring.datasource.username=user
spring.datasource.password=install
spring.datasource.driver-class-name=org.h2.Driver
spring.jpa.hibernate.ddl-auto=update
server.port=55000

0 个答案:

没有答案