使用HSQL的EmbeddedDatabase无法正常工作

时间:2017-09-15 10:06:18

标签: database spring

首先,我使用IntelliJ(v2017.2.3),它是一个带有webApp原型的Maven项目,我正在使用Spring。

我想使用HSQL创建一个EmbeddedDatabase,我想我正确设置了一切,但是当我启动我的应用程序时,没有任何附加内容(没有错误)。

这就是我所拥有的(图片链接):

When i launch my app i get this log, so that means the scritp has been executed

So this is the DB after the launch, the DB seems to be empty..

这是我的applicationContext.xml:

    <jdbc:embedded-database id="Users" type="HSQL">
    <jdbc:script location="classpath:db/sql/create_db.sql" />
</jdbc:embedded-database>

我的目标是在启动应用程序时执行create_db.sql脚本,配置似乎很好,我缺少什么?

非常感谢

0 个答案:

没有答案