web-dev-qa-db-ja.com

フライウェイ構成にmaven pom.xmlのプロパティファイルを使用できますか

<plugin>
    <groupId>com.googlecode.flyway</groupId>
    <artifactId>flyway-maven-plugin</artifactId>
    <version>1.7</version>
    <configuration>
        <driver>com.mysql.jdbc.Driver</driver>
        <url>jdbc:mysql://127.0.0.1:3306/db_abc</url>
        <user>db_user</user>
        <sqlMigrationPrefix>V</sqlMigrationPrefix>
    </configuration>
</plugin>

ここでは、ドライバー、URL、ユーザーについては触れません。私はすでにabc.property オン src/main/resources。ここでそのファイルをどのように使用できますか?

23
Garry

properties-maven-plugin 。ファイルからプロパティを読み取って、pomで使用することができます。

次のプラグイン定義を追加します。

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>properties-maven-plugin</artifactId>
    <version>1.0.0</version>
    <executions>
      <execution>
        <phase>initialize</phase>
        <goals>
          <goal>read-project-properties</goal>
        </goals>
        <configuration>
          <files>
            <file>src/main/resources/abc.properties</file>
          </files>
        </configuration>
      </execution>
    </executions>
  </plugin>

abc.propertiesに含まれるもの:

jdbc.driver = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql://127.0.0.1:3306/db_ab
jdbc.user = db_user

その後、次のようにプロパティを使用できます。

<!-- language: xml -->

<driver>${jdbc.driver}</driver>
<url>${jdbc.url}</url>
<user>${jdbc.user}</user>

バージョン3.0では、configFileを次のように使用する必要があります。

<configFile>src/main/resources/db/config/flyway.properties</configFile>
4
abk

私の意見では、最善かつ最も柔軟なアプローチは次のとおりです。

a)プロファイルとフィルタリングを使用-特定のプロファイル(開発、テストなど)のすべての構成プロパティを保持します。 development.properties:

jdbc.url=jdbc:mysql://127.0.0.1:3306/testdb?useSSL=false
jdbc.user=testuser
jdbc.password=testpass
jdbc.driver=com.mysql.jdbc.Driver

次に、pomファイル(おそらくルートpom内)でプロファイルを定義します。例:

...
<profiles>
    <profile>
        <id>development</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <build>
            <filters>
                <filter>../filters/development.properties</filter>
            </filters>
        </build>
        ...

ここで、developmentプロファイルがデフォルトでアクティブになっていることがわかります。別のプロファイルを使用したい場合は、

-p [profile-id]


b)フィルターされたflyway.propertiesを設定値-flyway.propertiesは、たとえばsrc/main/resourcesにあり、値はプロファイルプロパティファイルで定義されたパラメーターから使用する必要があります。

flyway.driver = ${jdbc.driver}
flyway.url = ${jdbc.url}
flyway.user = ${jdbc.user}
flyway.password = ${jdbc.password}

c)ビルドディレクトリからflyway.propertiesを参照-単純なプラグイン構成を使用します(私はクリーンなpomsが本当に好きです):

...
    <build>
        <resources>
            <!-- This way we instruct maven to inject values from filters into the resources -->
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.flywaydb</groupId>
                <artifactId>flyway-maven-plugin</artifactId>
                <configuration>
                    <configFile>${project.build.directory}/classes/flyway.properties</configFile>
                    <locations>
                        <location>classpath:migration/mysql</location>
                    </locations>
                </configuration>
            </plugin>
        </plugins>
    </build>
    ...

ここで多くの例に示されているように、リソースでフィルタリングを有効にすることを忘れないでください。私のflyway-maven-pluginバージョンは3.2.1であり、親pomのpluginManagementで管理されているため、バージョンはここに表示されません。また、ロケーション構成で明示的なSQLスクリプトを使用します。

4
user2310395

これに対処するにはいくつかの方法があります。 1つのアプローチは、それを逆に行うことです。

つまり、使用するプロパティはpom.xml内のプロパティとして保存され、ファイルabc.propertiesには、ビルド時に入力されるプレースホルダーのみが含まれます。

それをどのように構成できるかを示します。

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>com.stackoverflow</groupId>
    <artifactId>Q12619446</artifactId>
    <version>1.0-SNAPSHOT</version>

    <name>${project.artifactId}-${project.version}</name>

    <properties>
        <jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver>
        <jdbc.url>jdbc:mysql://127.0.0.1:3306/db_abc</jdbc.url>
        <jdbc.user>db_user</jdbc.user>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>com.googlecode.flyway</groupId>
                <artifactId>flyway-maven-plugin</artifactId>
                <version>1.7</version>
                <configuration>
                    <driver>${jdbc.driver}</driver>
                    <url>${jdbc.url}</url>
                    <user>${jdbc.user}</user>
                </configuration>
            </plugin>
        </plugins>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>
</project>

そして、これはあなたのsrc/main/resources/abc.propertiesになります(選択したキー名を使用してください):

jdbcDriver = ${jdbc.driver}
jdbcUrl = ${jdbc.url}
jdbcUser = ${jdbc.user}

ビルド後、target/classes/abc.propertiesは次のようになります。

jdbcDriver = com.mysql.jdbc.Driver
jdbcUrl = jdbc:mysql://127.0.0.1:3306/db_abc
jdbcUser = db_user

述べたように、これはoneのいくつかの方法のほんの一部です。それはあなたの正確なニーズに合わないかもしれませんが、それは可能です。

2
maba

ギャリー、

データベース接続パラメーターをpomファイルに配置しない方法がもう1つあります。特に、ユーザーのフォルダーの.m2サブフォルダーにあるsettings.xmlファイルにそれらを追加できます [1] 。利点は、dbパラネットがプロジェクトフォルダに存在せず、リポジトリに送信されないため、各開発者が独自の設定を使用できることです。

設定ファイルの例は、以下の例のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.Apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.Apache.org/SETTINGS/1.0.0 http://maven.Apache.org/xsd/settings-1.0.0.xsd">
  <profiles>
    <profile>
      <id>fw</id>
      <properties>
        <flyway.url>jdbc:Oracle:thin:@//localhost:1521/xe</flyway.url>
        <flyway.user>Your login</flyway.user>
        <flyway.password>Your password</flyway.password>
      </properties>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>fw</activeProfile>
  </activeProfiles>
</settings>

その後、次のスニペットに従ってpomファイルを変更できます。

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.Apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <modelVersion>4.0.0</modelVersion>
    ...
    <dependencies>
        ...
    </dependencies>

    <profiles>
        <profile>
            <id>fw</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.flywaydb</groupId>
                        <artifactId>flyway-maven-plugin</artifactId>
                        <version>3.2.1</version>
                        <configuration>
                            <url>${flyway.url}</url>
                            <user>${flyway.user}</user>
                            <password>${flyway.password}</password>
                        </configuration>
                        <dependencies>
                            <dependency>
                                <groupId>com.Oracle</groupId>
                                <artifactId>ojdbc7</artifactId>
                                <version>12.1.0.1.0</version>
                            </dependency>
                        </dependencies>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

上記の例ではOracleのドライバーを使用していますが、必要なドライバーに置き換えることができます。

現在の設定を印刷するには、以下を実行します。

mvn help:effective-settings
2
javaeeeee

バージョン3.xにはconfigFileオプションがあります

By default- flyway.properties in the same directory as the project POM.

Pomの構成セクションに外部プロパティファイルを追加するか、mavenゴールの例-コマンドライン-を実行するときに渡すことができます。

mvn <goal> -Dflyway.configFile=myConfig.properties 

POMファイル-

<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>3.2.1</version>
<configuration>
    <driver/>
    <url/>
    <user/>
    <password/>
    <baselineVersion>1.0</baselineVersion>
    <baselineDescription>Base Migration</baselineDescription>
    <skip>false</skip>
    <configFile>myConfig.properties</configFile>
    </configuration>
</plugin>
0