我从一个普通的 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>
有什么解决方案/更好的方法吗?