我们需要处理来自客户端到REST的并发请求,而REST托管在Jetty服务器上,但是所有请求都应该以顺序方式执行
web服务器是否保证它接收到的请求的顺序执行?如果没有,解决办法是什么?
假设我们按照API的顺序接收请求。
我们同步了controller方法,以确保每个请求创建的线程以顺序方式执行,但如何保证线程按顺序进入控制器。
Ours is a standalone application and only one Jetty instance is running and no load-balancers, cache implemented.
我有一个要在我的project.Below中实现的案例是一个必须实现的示例rest服务
@GET
@Path("/test/{id}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public String getData(@PathParam("id") String id) {
//Some processing to get value of String
String res