spring-data-jpa 白标错误页面,即使application.properties看起来很好

ercv8c1e  于 2022-11-10  发布在  Spring
关注(0)|答案(1)|浏览(111)

即使我的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
pprl5pva

pprl5pva1#

当您没有/error的Map时,会发生白色标签错误。请检查您是否在控制器方法中定义了/h2-console路由。如果您已经定义了,请确保您的所有类都在同一个文件夹级别或更深的级别上,因为您的主类可以确保组件扫描确实找到您的类。

相关问题