我在应用程序的内存数据库中使用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
以下是我在浏览器中遇到的错误:
答案 0 :(得分:0)
为重现该错误,我下载了一个带有spring-boot-starter-web
和h2
模块的全新Spring boot项目。使用设置时,无法访问该URL,就像显示的屏幕截图一样。
添加后确实可以访问该URL
spring.h2.console.path=/h2-console
至application.properties
。