gpt4 book ai didi

java - 如何从外部属性文件填充 Liquibase 参数值?

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:47:21 26 4
gpt4 key购买 nike

有什么方法可以填充 parameters在基于外部属性文件内容的 Liquibase 变更日志文件中?

例如,我希望能够说:

<createTable tableName="${table.name}">
<column name="id" type="int"/>
<column name="${column1.name}" type="varchar(${column1.length})"/>
<column name="${column2.name}" type="int"/>
</createTable>

并将 table.name 的值和其他参数保存在外部文件 db.properties 中,并从变更日志中或从Liquibase 命令行,或作为运行 liquibase 的 Maven 插件的选项。

我似乎找不到任何方法可以做到这一点,这可能吗?

最佳答案

在编译时做:听起来像是 maven 的工作 filters和/或 profiles

注意:小心使用 liquibase 和任何“标记”替换... liquibase 存储应用变更集的 CRC

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>0.0.1-SNAPSHOT</version>

<build>
<filters>
<filter>src/main/filters/liquibase.properties</filter>
</filters>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>liquibase.xml</include>
</includes>
</resource>
</resources>
</build>
</project>

/src/main/filters/liquibase.properties

table.name=TABLE_NAME
column1.name=COLUMN1_NAME
column1.length=10
column2.name=COLUMN2_NAME

/src/main/resources/liquibase.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog logicalFilePath="liquibase.xml" xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">

<changeSet author="me" id="changeSetId1">
<comment>Test</comment>

<createTable tableName="${table.name}">
<column name="id" type="int" />
<column name="${column1.name}" type="varchar(${column1.length})" />
<column name="${column2.name}" type="int" />
</createTable>
</changeSet>

</databaseChangeLog>

编辑:A typical调用(使用 filtered 资源)将如下所示: mvn resources:resources liquibase:update或者更喜欢使用配置文件... mvn resources:resources liquibase:update -P<profile_name>

EDIT2:这种定义列的方式有一大优势。您可以使用此属性(例如:column1.length)的值(例如:10)来验证每个层:Hibernate、DAO、WEB、faces、JavaScript。只需在需要对其进行验证的每个地方使用此属性。如果需要,甚至在 i18n/messages.properties 中(例如:input1.validation=No more than ${column1.length} letters.)。

唯一的麻烦是,如果您需要更改此值,则需要提供适当的 liquibase 更新/回滚脚本。有时可以更改值并设置新的 liquibase 校验和(安全操作,如增加 varchar 长度),但有时您需要使用新属性/值创建一个安全更新更改脚本。

关于java - 如何从外部属性文件填充 Liquibase 参数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20610948/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com