在启动时不调用data.sql

时间:2017-05-31 16:30:38

标签: java hibernate spring-boot spring-data

我有以下application.yml:

spring:
  profiles: test
  jpa:
      hibernate:
        dialect: org.hibernate.dialect.H2Dialect
      generate-ddl: true
      ddl-auto: true
  datasource:
    url: jdbc:h2:mem:test_db;MODE=MSSQLServer
    username: sa
    password:
    data: data.sql
    continue-on-error: true
flyway:
  enabled: false

以及以下项目结构:

enter image description here

但是在启动时不会调用data.sql

0 个答案:

没有答案