SpringBoot2.0关于启动应用自动加载schema-all.sql文件的改动

SpringBoot2.0在自动加载类路径下的schema-all.sql文件的时候,自动加载不成功

  1. 数据库驱动需要更改
driver-class-name: com.mysql.cj.jdbc.Driver

     
     
     
     
  • 1
  1. 需要在配置文件设置initialization-mode: always
    SpringBoot2.0关于启动应用自动加载schema-all.sql文件的改动_第1张图片
    即可成功加载schema-all.sql文件,问题解决!!!

  2. 可以在application.yml属性文件中指定加载的sql文件配置

spring:
  datasource:
    username: root
    password: 123456
    url: jdbc:mysql://192.168.1.73:3306/springboot-jdbc
    driver-class-name: com.mysql.cj.jdbc.Driver
    initialization-mode: always
    schema:
        - classpath:department.sql

     
     
     
     
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
                                

你可能感兴趣的:(SpringBoot2.0关于启动应用自动加载schema-all.sql文件的改动)