【发布时间】:2019-03-22 10:16:42
【问题描述】:
Batch API 是一个非常酷的框架。 JBoss 实现“jBeret”添加了更多很酷的东西,例如 REST API 和 UI。
Batch API 是否会在某个时候成为 Quarkus 的一部分?
【问题讨论】:
Batch API 是一个非常酷的框架。 JBoss 实现“jBeret”添加了更多很酷的东西,例如 REST API 和 UI。
Batch API 是否会在某个时候成为 Quarkus 的一部分?
【问题讨论】:
更新:我们现在在 Quarkiverse 中有一个 Quarkus JBeret 扩展:https://github.com/quarkiverse/quarkus-jberet。
【讨论】:
是的。它将成为 Quarkus 的一部分。 Quarkus JBeret 扩展增加了对 JSR-352 Batch Applications for the Java Platform. 的支持,JBeret 是 JSR-352 的一个实现。
要使用扩展,请将依赖项添加到目标项目中:
<dependency>
<groupId>io.quarkiverse.jberet</groupId>
<artifactId>quarkus-jberet</artifactId>
<version>0.0.5</version>
</dependency>
查看Github 了解更多信息。
【讨论】: