2

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

@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;
    }
}

我正在考虑使用石英开始工作,但只有一次,没有重复。并且在请求状态时,我会得到触发状态。但是将石英用于非预定用途的想法看起来很奇怪。有没有更好的方法呢?也许 dropwizard 本身提供了更好的工具?将appriciate任何建议。

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

4

1 回答 1

7

您可以使用该Managed界面。在下面的代码段中,我使用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(). 请参阅获取当前在 Java 中运行的所有线程的列表。根据您连接应用程序的方式,您可能仍需要一些中间件。

于 2016-01-08T06:19:54.277 回答