春季启动:由“ spring.datasource.data”定义的资源[/src/main/resources/datadump.sql]不存在

时间:2019-06-18 09:24:13

标签: hibernate spring-boot h2

尝试将初始数据加载到我的h2数据库中。我在src / main / resources中有sql文件,但似乎没有选择它?它与我的application-test.properties位于同一目录中。

application-test.properties

#configuration for main data source
spring.jpa.generate-ddl=true
  spring.jpa.hibernate.ddl-auto=update
  hibernate.ddl-auto=update
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:db;DB_CLOSE_DELAY=-1
spring.datasource.username=sa
spring.datasource.password=sa
spring.datasource.data=src/main/resources/datadump.sql

0 个答案:

没有答案