客户端JAX-RS异步请求

时间:2019-09-03 12:31:25

标签: java rest asynchronous client jax-rs

我想实现一个异步JAX_RS客户端 我有五个Web服务Rest,我需要同时启动这些服务,而不必等待启动的第一个服务的响应。

这是我的客户代码:

public static void main(String[] args) throws InterruptedException {

        while (true) {
            for (int i=11;i<=15;i++){
                launcherPS(i);
            }
        }   
    }

    static void launcherPS(int id){
        ClientConfig config = new ClientConfig();
        Client client = ClientBuilder.newClient(config);
        String name="LampPostZ"+id;
        WebTarget target = client.target(getBaseURI(name));
        System.out.println();
        System.out.println("Launching of PresenceSensor "+id+"........");

        String state = target.path("PresenceSensor/"+id).path("getState")
                .request().accept(MediaType.TEXT_PLAIN).get(String.class);
        System.out.println("state Presence Sensor "+id+" = " + state);
        if (state.equals("On")) {
            target.path("PresenceSensor/"+id).path("change").request()
                    .accept(MediaType.TEXT_PLAIN).get(String.class);
        } else {
            System.out.println("Presence Sensor  shut down, state= "
                    + state);

        }
    }
    private static URI getBaseURI(String project) {// chemin de l'application
        return UriBuilder.fromUri("http://localhost:8081/"+project).build();                                                                            
    }
}

如何使其异步(同时启动5个传感器)? 预先谢谢你。

1 个答案:

答案 0 :(得分:0)

首先,为什么您有一阵子真实?一旦循环结束,所有工作就完成了吗?

您将需要将每个调用置于其自己的线程中。

这是我的职责:在线程中启动每个调用,然后等待每个响应,然后退出应用程序。

您可以使用以下代码:

ExecutorService executor = Executors.newFixedThreadPool(5);

// Each call will be started here
List<Future<Integer>> futureList = new ArrayList<>();
for (int i = 11; i <= 15; i++) {
    final int index = i;
    Future<Integer> future = executor.submit(() -> {
        // do your stuff here
        return index;
    });
    futureList.add(future);
}

// This will wait for each call to finish
for (Future<Integer> integerFuture : futureList) {
    integerFuture.get();
}

// everything's done, no need to wait indefinitely