SpringBoot 加载Mysql脚本的两种方式

1. 使用自动配置加载sql脚本文件

命名规则
Schema-.sql
data-
.sql
org\springframework\boot\autoconfigure\jdbc\DataSourceInitializer.java
getScripts

默认规则:schema.sql schema-all.sql

SpringBoot 加载Mysql脚本的两种方式_第1张图片

2. 使用配置文件来加载

spring:
  datasource:
    url: jdbc:mysql://ip:port/jdbc
    username: root
    password: 123456
    driver-class-name: com.mysql.cj.jdbc.Driver
    # 自动配置原理
    schema:
      - classpath:department.sql

classpath后不要加空格,否则找不到文件

nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/]

你可能感兴趣的:(SpringBoot,Mysql)