2

我从一个普通的 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>

有什么解决方案/更好的方法吗?

4

2 回答 2

9

尝试


@ConfigProperty(name = "quarkus.application.version")
String version;

您还可以从清单中读取实施版本。

于 2019-11-22T10:45:27.407 回答
-1

我不确定我的方法是否是最好的情况,但你可以试试这个:

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;
于 2019-12-18T10:25:47.133 回答