h2database登录屏幕在我的spring应用程序中不起作用

时间:2019-04-26 11:37:56

标签: spring hibernate h2

我在应用程序的内存数据库中使用h2dabase。 我在pom.xml文件中添加了以下依赖项。

<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>			
</dependency>

以下是我的application.properties

spring.application.name=currency-exchange-service 
server.port=8000 
spring.jpa.show-sql=true 
spring.h2.console.enabled=true 

以下是我在浏览器中遇到的错误:

enter image description here

1 个答案:

答案 0 :(得分:0)

为重现该错误,我下载了一个带有spring-boot-starter-webh2模块的全新Spring boot项目。使用设置时,无法访问该URL,就像显示的屏幕截图一样。

添加后确实可以访问该URL spring.h2.console.path=/h2-consoleapplication.properties