Access Request object from REST

后端 未结 2 1057
傲寒
傲寒 2020-12-04 18:31

Is it possible to access the Request object in a REST method under JAX-RS?

I just found out

@Context Request request;
2条回答
  •  [愿得一人]
    2020-12-04 19:14

    To elaborate on @dfa's answer for alternatives, I find this to be simpler than specifying the variable on each resource method signature:

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

提交回复
热议问题