如何在quarkus中专门获取应用程序的版本(由pom.xml中的标签版本定义)?
How can I get the version of the application (defined by tag version in pom.xml) in quarkus specially?
我从普通 Java EE 应用程序转移到 quarkus.io。
在 Java EE 中,我有一个属性文件
version=${project.version}
并在 JAX RS 端点中重新读取此文件。这非常有效。
@GET
public Response getVersion() throws IOException {
InputStream in = getClass().getClassLoader().getResourceAsStream("buildInfo.properties");
if (in == null) {
return Response.noContent().build();
}
Properties props = new Properties();
props.load(in);
JsonObjectBuilder propertiesBuilder = Json.createObjectBuilder();
props.forEach((key, value) -> propertiesBuilder.add(key.toString(), value.toString()));
return Response.ok(propertiesBuilder.build()).build();
}
现在正在使用quarkus和MicroProfile,不知道有没有更好的办法
我尝试使用 MicroProfile 的 ConfigProperty 设置。
@ConfigProperty(name = "version")
public String version;
但我收到以下错误:
Property project.version not found
。
这是我的 pom 的构建部分。
<build>
<finalName>quarkus</finalName>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>1.0.0.CR2</version>
<executions>
<execution>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<configuration>
<systemProperties>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
是否有任何解决方案/更好的方法?
尝试
@ConfigProperty(name = "quarkus.application.version")
String version;
您还可以从清单中读取实现版本。
我不确定我的方法是否是最佳方案,但您可以试试这个:
pom.xml :
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/application.properties</include>
</includes>
</resource>
</resources>
在application.properties中使用版本属性:
quarkus.version=${quarkus.platform.version}
然后将其用作配置 属性:
@ConfigProperty(name = "quarkus.version")
String version;
我从普通 Java EE 应用程序转移到 quarkus.io。
在 Java EE 中,我有一个属性文件
version=${project.version}
并在 JAX RS 端点中重新读取此文件。这非常有效。
@GET
public Response getVersion() throws IOException {
InputStream in = getClass().getClassLoader().getResourceAsStream("buildInfo.properties");
if (in == null) {
return Response.noContent().build();
}
Properties props = new Properties();
props.load(in);
JsonObjectBuilder propertiesBuilder = Json.createObjectBuilder();
props.forEach((key, value) -> propertiesBuilder.add(key.toString(), value.toString()));
return Response.ok(propertiesBuilder.build()).build();
}
现在正在使用quarkus和MicroProfile,不知道有没有更好的办法
我尝试使用 MicroProfile 的 ConfigProperty 设置。
@ConfigProperty(name = "version")
public String version;
但我收到以下错误:
Property project.version not found
。
这是我的 pom 的构建部分。
<build>
<finalName>quarkus</finalName>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>1.0.0.CR2</version>
<executions>
<execution>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<configuration>
<systemProperties>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
是否有任何解决方案/更好的方法?
尝试
@ConfigProperty(name = "quarkus.application.version")
String version;
您还可以从清单中读取实现版本。
我不确定我的方法是否是最佳方案,但您可以试试这个:
pom.xml :
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/application.properties</include>
</includes>
</resource>
</resources>
在application.properties中使用版本属性:
quarkus.version=${quarkus.platform.version}
然后将其用作配置 属性:
@ConfigProperty(name = "quarkus.version")
String version;