gpt4 book ai didi

spring - 在 dropwizard 中运行异步作业并轮询其状态

转载 作者:行者123 更新时间:2023-12-02 06:34:21 34 4
gpt4 key购买 nike

在 dropwizard 中,我需要实现异步作业并轮询它们的状态。我在资源中有两个端点:

@Path("/jobs")
@Component
public class MyController {
@POST
@Produces(MediaType.APPLICATION_JSON)
public String startJob(@Valid MyRequest request) {
return 1111;
}

@GET
@Path("/{jobId}")
@Produces(MediaType.APPLICATION_JSON)
public JobStatus getJobStatus(@PathParam("id") String jobId) {
return JobStatus.READY;
}
}

我正在考虑使用quartz来开始工作,但仅限一次且不重复。当请求状态时,我将获得触发状态。但将 quartz 用于非预定用途的想法看起来很奇怪。对此有更好的方法吗?也许 dropwizard 本身提供了更好的工具?将感谢任何建议。

更新:我也在看https://github.com/gresrun/jesque ,但找不到任何方法来轮询正在运行的作业的状态。

最佳答案

您可以使用托管界面。在下面的代码片段中,我使用 ScheduledExecutorService 来执行作业,但如果您愿意,也可以使用 Quartz 来代替。我更喜欢使用 ScheduledExecutorService 因为它更简单、更容易......

第一步是注册您的托管服务。

environment.lifecycle().manage(new JobExecutionService());

第二步是编写它。

/**
* A wrapper around the ScheduledExecutorService so all jobs can start when the server starts, and
* automatically shutdown when the server stops.
* @author Nasir Rasul {@literal nasir@rasul.ca}
*/
public class JobExecutionService implements Managed {


private final ScheduledExecutorService service = Executors.newScheduledThreadPool(2);

@Override
public void start() throws Exception {
System.out.println("Starting jobs");
service.scheduleAtFixedRate(new HelloWorldJob(), 1, 1, TimeUnit.SECONDS);

}

@Override
public void stop() throws Exception {
System.out.println("Shutting down");
service.shutdown();
}
}

以及工作本身

/**
* A very simple job which just prints the current time in millisecods
* @author Nasir Rasul {@literal nasir@rasul.ca}
*/
public class HelloWorldJob implements Runnable {
/**
* When an object implementing interface <code>Runnable</code> is used
* to create a thread, starting the thread causes the object's
* <code>run</code> method to be called in that separately executing
* thread.
* <p>
* The general contract of the method <code>run</code> is that it may
* take any action whatsoever.
*
* @see Thread#run()
*/
@Override
public void run() {
System.out.println(System.currentTimeMillis());
}
}

正如下面评论中提到的,如果您使用Runnable,则可以Thread.getState()。请引用Get a List of all Threads currently running in Java 。您可能仍然需要一些中间部分,具体取决于您连接应用程序的方式。

关于spring - 在 dropwizard 中运行异步作业并轮询其状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34653177/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com