Spring Boot Flyway 迁移占位符

Spring Boot Flyway migration placeholder

有人可以展示在 Flyway 迁移中使用 application.properties 配置的正确格式吗?

我想在我的 application.properties 文件中使用数据源配置的用户名来授予对数据库的权限 table(使用 Flyway 进行数据库迁移,用户名最终会因环境而异),但是我找不到语法示例。

示例application.properties:

#  Database
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/example_db
spring.datasource.username=example_db_application
spring.datasource.password=examplePassword1

迁移:

CREATE TABLE token
(
  id TEXT,
  value TEXT,
);

GRANT SELECT, INSERT, UPDATE, DELETE ON token TO ${spring.datasource.username};

我尝试了各种迭代(flyway.placeholders.spring.datasource.username,尝试不指定前缀:spring.flyway.placeholder-prefix=)但没有成功。

Spring-Boot在路径spring.flyway.placeholders.*=

下提供flyway迁移placeholder-values的通用application-property

用法

# application.properties
# -> placeholder value `user`
spring.flyway.placeholders.user=joe

-- db/migration/V3__Migration_With_Placeholder.sql`:

CREATE TABLE ${user} (
   ...
)