为什么 import.sql 在 Spring 启动时会失败?

Why would import.sql fail in Spring Boot?

我在 Spring 启动时关注了 this tutorial

这家伙走得相当快,但我们的代码似乎一切都一样。当我开始查看 H2 控制台时,我发现我的 Speaker table 不见了。

我在这里看到了很多问题,到处都是博客,似乎 您所要做的就是将文件放在 main/resources 中,它就可以工作了。好吧,它没有!

一些答案谈到persistence.xml and/or H2 的配置文件。好吧,我没有那些,那个教程和他的作品也没有。

我发现一些看似最简单的事情在 Spring 中非常令人沮丧,我厌倦了环顾四周并找到相同的答案但不起作用。

有人能解释一下为什么会失败吗?

我无法想象除了我的 pom.xml 我还需要什么,因为本教程只是添加 import.sql 并且就像其他人声称的那样 - 它只是有效。 如果需要我会添加更多。

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.test</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.2.6.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-rest</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

import.sql

INSERT INTO SPEAKER(ID, FIRST_NAME, LAST_NAME, TWITTER, BIO) VALUES (0, 'Foo', 'Baz', 'foobaz', 'Foo Baz hates Twitter');
INSERT INTO SPEAKER(ID, FIRST_NAME, LAST_NAME, TWITTER, BIO) VALUES (1, 'Bar', 'Baz', 'barbaz', 'Bar Baz hates Twitter too');
INSERT INTO SPEAKER(ID, FIRST_NAME, LAST_NAME, TWITTER, BIO) VALUES (2, 'Santa', 'Clause', 'saintnick', 'Santa is a Twitter champ');

通过更仔细的调查,我在一个次要但重要的细节中找到了答案。显然,当控制台启动时,它向表单条目添加了默认值,并且与教程中的有所不同。

对于 JDBC URL,默认值为 jdbc:h2:~/test

我不得不将其更改为 jdbc:h2:mem:testdb

我现在可以看到 Speaker table 和数据。

一旦我进行了更改,它就保持默认状态。我想作者已经这样做了,但我错过了其中的区别。

感谢@M 的帮助。 Deinum!