Java SpringBoot

弃用内容

这次重新设计的只是对Datasource脚本初始化机制的重新设计。先来看看这次被弃用部分的内容(位于org.springframework.boot.autoconfigure.jdbc.DataSourceProperties),如果有用过这些配置内容,那么新配置就很容易理解了。

  1. /**
  2. * Mode to apply when determining if DataSource initialization should be performed
  3. * using the available DDL and DML scripts.
  4. */
  5. @Deprecated
  6. private DataSourceInitializationMode initializationMode = DataSourceInitializationMode.EMBEDDED;
  7. /**
  8. * Platform to use in the DDL or DML scripts (such as schema-${platform}.sql or
  9. * data-${platform}.sql).
  10. */
  11. @Deprecated
  12. private String platform = "all";
  13. /**
  14. * Schema (DDL) script resource references.
  15. */
  16. private List<String> schema;
  17. /**
  18. * Username of the database to execute DDL scripts (if different).
  19. */
  20. @Deprecated
  21. private String schemaUsername;
  22. /**
  23. * Password of the database to execute DDL scripts (if different).
  24. */
  25. @Deprecated
  26. private String schemaPassword;
  27. /**
  28. * Data (DML) script resource references.
  29. */
  30. @Deprecated
  31. private List<String> data;
  32. /**
  33. * Username of the database to execute DML scripts (if different).
  34. */
  35. @Deprecated
  36. private String dataUsername;
  37. /**
  38. * Password of the database to execute DML scripts (if different).
  39. */
  40. @Deprecated
  41. private String dataPassword;
  42. /**
  43. * Whether to stop if an error occurs while initializing the database.
  44. */
  45. @Deprecated
  46. private boolean continueOnError = false;
  47. /**
  48. * Statement separator in SQL initialization scripts.
  49. */
  50. @Deprecated
  51. private String separator = ";";
  52. /**
  53. * SQL scripts encoding.
  54. */
  55. @Deprecated
  56. private Charset sqlScriptEncoding;

对应到配置文件里的属性如下(这里仅列出部分,就不全部列出了,主要就是对应上面源码中的属性):

  1. spring.datasource.schema=
  2. spring.datasource.schema-username=
  3. spring.datasource.schema-password=
  4. ...

这些配置主要用来指定数据源初始化之后要用什么用户、去执行哪些脚本、遇到错误是否继续等功能。

新的设计

Spring Boot 2.5.0开始,启用了全新的配置方式,可以从这个类org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties里看到详情。
下面通过一个简单的例子来体验这个功能的作用。
创建一个Spring Boot的基础应用,并在pom.xml中引入和JDBC的依赖:

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-jdbc</artifactId>
  4. </dependency>
  5. <dependency>
  6. <groupId>mysql</groupId>
  7. <artifactId>mysql-connector-java</artifactId>
  8. </dependency>

在配置文件中增加数据源和初始化数据源的配置,具体如下:

  1. spring.datasource.url=jdbc:mysql://localhost:3306/test
  2. spring.datasource.username=root
  3. spring.datasource.password=
  4. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
  5. # Spring Boot 2.5.0 init schema & data
  6. # 执行初始化脚本的用户名称
  7. spring.sql.init.username=root
  8. # 执行初始化脚本的用户密码
  9. spring.sql.init.password=
  10. # 初始化的schema脚本位置
  11. spring.sql.init.schema-locations=classpath*:schema-all.sql

根据上面配置的定义,接下来就在resource目录下,创建脚本文件schema-all.sql,并写入一些初始化表结构的脚本

  1. create table test.user_info(
  2. id int unsigned auto_increment comment '用户id'
  3. primary key,
  4. open_id varchar(255) default '' null comment '微信小程序openid',
  5. nick_name varchar(255) default '' null comment '微信名',
  6. head_img varchar(255) default '' null comment '微信头像',
  7. sex varchar(255) default '' null comment '性别',
  8. phone varchar(255) default '' null comment '手机',
  9. province varchar(255) default '' null comment '注册地址:省',
  10. city varchar(255) default '' null comment '注册地址:城市',
  11. country varchar(255) default '' null comment '注册地址:县/区',
  12. status tinyint unsigned default 0 not null comment '是否标记删除 0:否 1:是',
  13. create_time datetime not null comment '创建时间',
  14. update_time datetime not null comment '更新时间'
  15. )
  16. comment '用户表';

完成上面步骤之后,启动应用。然后打开MySQL客户端,可以看到在test库下,多了一个user_info表
通过上面的例子,不难想到这样的功能主要可以用来管理应用启动与数据库配置的自动执行,以减少应用部署过程中手工执行的内容,降低应用部署的执行步骤。

配置详解

除了上面用到的配置属性之外,还有一些其他的配置,下面详细讲解一下作用。

  • spring.sql.init.enabled:是否启动初始化的开关,默认是true。如果不想执行初始化脚本,设置为false即可。通过-D的命令行参数会更容易控制。
  • spring.sql.init.usernamespring.sql.init.password:配置执行初始化脚本的用户名与密码。这个非常有必要,因为安全管理要求,通常给业务应用分配的用户对一些建表删表等命令没有权限。这样就可以与datasource中的用户分开管理。
  • spring.sql.init.schema-locations:配置与schema变更相关的sql脚本,可配置多个(默认用;分割)
  • spring.sql.init.data-locations:用来配置与数据相关的sql脚本,可配置多个(默认用;分割)
  • spring.sql.init.encoding:配置脚本文件的编码
  • spring.sql.init.separator:配置多个sql文件的分隔符,默认是;
  • spring.sql.init.continue-on-error:如果执行脚本过程中碰到错误是否继续,默认是false`;所以,上面的例子第二次执行的时候会报错并启动失败,因为第一次执行的时候表已经存在。

    应用建议

    关于这些配置的应用,把它与数据库的版本管理联系起来(因为可以自动的执行脚本)。
    那么依靠这些配置,是否可以胜任业务应用部署时候数据库初始化的自动化实现呢?
    就上述所介绍的配置,虽然具备了一定的自动执行能力。但由于缺失对当前环境的判断能力,所以要应对实际的部署场景来说,还是远远不够的。
    如果要自动化的管理数据库表结构、初始化数据的话,建议是:
  1. 默认提供的这个初始化功能可以且仅用于单元测试,自动创建数据库结构与初始化数据,使用完毕后销毁。可以方便的控制每次单元测试的执行环境一致。
  2. 应用在环境部署的时候,使用Flyway来实现。
  3. 联合Flyway一同使用,通过org.springframework.jdbc.datasource.init.DataSourceInitializer来定义更复杂的执行逻辑。