バンドルにプロパティ ファイルを導入しようとしています (Spring Dynamic Modules に基づく OSGI)。そのプロパティファイルにデータベースURL、ユーザー名、パスワードなどのプロパティを保持し、そのファイルからmavenを読み取りたいと思っています。
私はpomにフィルタリングを導入しようとしました:
<properties>
<database.username>${development_user}</database.username>
</properties>
<build>
<filters>
<filter>src/main/resources/Application_${env}.properties</filter>
</filters>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>bundle</id>
<phase>package</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<executions>
<execution>
<id>bundle</id>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>*/pom.</excludes>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
Application_local.properties ファイルに以下のプロパティがあります。
development_user=dev_user
しかし、コマンド「mvn clean install -Denv=local」を使用してバンドルでビルドすると、システムは「${development_user}」を値として database.xml に挿入します。
誰かがこの問題を解決するのを手伝ってくれますか?