来自 REST 的访问请求对象

2022-09-01 13:39:02

是否可以在 JAX-RS 下的 REST 方法中访问 Request 对象?

我刚刚发现

@Context Request request;

答案 1

在 JAX-RS 上,必须使用@Context请求参数进行注释:

 @GET  
 public Response foo(@Context Request request) {

 }

(可选)您还可以注入:


答案 2

为了详细说明@dfa替代方案的答案,我发现这比在每个资源方法签名上指定变量更简单:

public class MyResource {

  @Context
  private HttpServletRequest httpRequest;

  @GET  
  public Response foo() {  
    httpRequest.getContentType(); //or whatever else you want to do with it
  }
}

推荐