即使我的application.properties
看起来很好,当我去http://localhost:8080/h2-console,我仍然得到白标签错误页
我的application.properties
:
server:
port: 8080
Spring:
h2:
console:
enabled: true
path: /h2-console
onsole.settings.trace: false
scpring.h2.console.settings.web-allow-others: false
datasource:
url: jdbc:h2:mem:testdb
username: sa
password:
driverClassName: org.h2.Driver
jpa:
show-sql: true
defer-datasource-initialization: true
database-platform: org.hibernate.dialect.H2Dialect
1条答案
按热度按时间pprl5pva1#
当您没有
/error
的Map时,会发生白色标签错误。请检查您是否在控制器方法中定义了/h2-console
路由。如果您已经定义了,请确保您的所有类都在同一个文件夹级别或更深的级别上,因为您的主类可以确保组件扫描确实找到您的类。