H2内存数据库未在weblogic中显示控制台,但在Tomcat中显示

时间:2018-04-11 03:59:12

标签: spring-boot build.gradle h2 weblogic12c

我正在使用H2内存数据库用于带有gradle的spring-boot应用程序。 当我在Tomcat中运行时,我能够看到控制台,但是当我在weblogic上部署时,我无法看到h2-console。它工作但我想看到H2控制台做一些CRUD操作。 这是我对H2的application.properties:
spring.datasource.h2.console.enabled =真

我可以在此端点看到Tomcat的控制台:

http://localhost:8080/../../api/h2-console

但我无法在weblogic的以下端点看到控制台:

http://localhost:7001/../../api/h2-console 白标错误页面

我在想它可能是一个简单的属性文件更改。但我的研究找不到任何相关的东西。我非常感谢对此提出的任何建议或帮助。谢谢

1 个答案:

答案 0 :(得分:0)

尝试添加Spring Boot devtools maven依赖项并重新打包应用程序。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
</dependency>