Spring boot + H2 Db进入File + / h2-console

时间:2016-09-08 14:08:28

标签: java spring maven h2 flyway

我正在开发一个项目,我需要迁移数据库并在文件上使用H2数据库来开发环境。

我将flyway dependendy添加到我的Spring Boot(1.4.0.RELEASE)Web应用程序的pom中:

    <dependency>
        <groupId>org.flywaydb</groupId>
        <artifactId>flyway-core</artifactId>
    </dependency>

然后我在application.properties上配置了db和flyway:

spring.h2.console.enabled=true
spring.h2.console.path=/h2-console
spring.datasource.url=jdbc:h2:file:./db/pippo.db;
spring.datasource.username=pippo
spring.datasource.password=pluto


flyway.enabled=true
flyway.url=jdbc:h2:file:./db/pippo.db
flyway.user=pippo
flyway.password=pluto
flyway.locations=classpath:db/migration

然后,如果我启动应用程序,它会正确地将数据库文件创建为./db/pippo.db ...所以我想一切都会正常工作,但是当我在浏览器上写http://localhost:8081/h2-console时,我会收到404响应。 我的配置出了什么问题?

谢谢大家

1 个答案:

答案 0 :(得分:1)

确保您始终在范围&#39;编译&#39;,范围&#39;运行时&#39;等会导致h2-console出现故障。而你要确保你已经添加了一个servlet映射&#39; / h2-console / *&#39;

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