.properties
からファイルを取得する方法は、私の現在のプロジェクトの1つとして、pom.xml
の<properties>
タグのプロパティを設定していましたが、私の要件は、私はいくつかの.properties
ex:dev.propertiesファイルのすべてのプロパティを設定します。その中に以下の内容があります。だから、mavenプラグインを使用して.propertiesから値を読み取る方法
spring.package=org.springframework
spring.artifact=spring-core
spring.version=3.0.5.RELEASE
、今私は次のようにpom.xml
に上記のプロパティを設定したい:
<dependencies>
<dependency>
<groupId>spring.package</groupId>
<artifactId>spring.artifact</artifactId>
<version>${spring.version}</version>
</dependency>
</dependencies>
私は、このリンクを経て:How to read an external properties file in Maven
しかし、それは次のエラーを与えています。 Missing artifact org.springframework:spring-core:jar:spring.version
ここは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.ram</groupId>
<artifactId>DynamicProperties</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<spring.version>spring.version</spring.version>
</properties>
<build>
<plugins>
<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>
<urls>
<url>file:///D:/Hadoop_Apps/DynamicProperties/src/main/resources/dev.properties</url>
</urls>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
</dependencies>
</project>
しかし、spring-core-3.0.5.RELEASE jar
は、Mavenリポジトリで利用できます。 これを行うための他のプラグインはmavenにありますか、ここに追加の設定がありませんでした。
私が間違っている場合は、訂正してください。
ありがとうございました。
こんにちはジーテンドラ、それは誤植だ、私はあなたのポンポンファイルを投稿してくださいすることができる唯一のことは、エラー – Creator
を与えているということで同じことをやりました。それで私たちはそれをより良く分析することができます。 – Jeet
pom.xml updated – Creator