我是否需要创建一个我想用H2预填充的表格?

时间:2016-06-03 13:48:29

标签: database hibernate h2 in-memory-database

我在尝试为Spring Boot应用程序创建内存H2数据库时遇到的错误感到困惑。相关配置是

db.url=jdbc:h2:mem:test;MODE=MySQL;DB_CLOSE_DELAY=-1;INIT=runscript from 'classpath:create.sql'
hibernate.hbm2ddl.auto=create

create.sql

CREATE TABLE `cities` (
  `name` varchar(45)  NOT NULL,
  PRIMARY KEY (`name`)
) ;

INSERT INTO `cities` VALUES ('JAEN'),('ALBACETE');

但我收到错误Caused by: org.h2.jdbc.JdbcSQLException: Table "CITIES" already exists;

很奇怪,如果我删除CREATE TABLE语句,我会得到:

Caused by: org.h2.jdbc.JdbcSQLException: Table "CITIES" not found;

唯一有效的方法是使用DROP TABLE IF EXISTS,但是,我认为我不应该这样做。

发生了什么?将静态数据预填充到H2内存数据库的正确方法是什么?

1 个答案:

答案 0 :(得分:1)

1)Hibernate方式:使用import.sql文件或指定文件

spring.jpa.properties.hibernate.hbm2ddl.import_files=file1.sql,file2.sql

http://docs.spring.io/spring-boot/docs/current/reference/html/howto-database-initialization.html

2)Spring Boot:使用默认的schema.sql& data.sql文件 或通过属性指定文件

spring.datasource.schema = file1.sql spring.datasource.data = file1.sql, file2.sql

http://docs.spring.io/autorepo/docs/spring-boot/1.0.2.RELEASE/reference/html/howto-database-initialization.html