欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

schema.sql运行不生效解决

程序员文章站 2022-04-30 15:18:18
...

在SpringBoot1.x中, 运行schema.sql不需要配置便可之间运行,但是在SpringBoot2.x中,、需要在yaml文件中配置spring.datasource.initialization-mode: always

spring.datasource.initialization-mode: always
schema-*.sql、data-*.sql
默认规则:schema.sql,schema-all.sql;

可以使用   指定位置
	schema:
      - classpath:department.sql
      指定位置
相关标签: SpringBoot