0

我编写了一个类来处理 Rest 调用。从我想调用 Servlet 的方法。现在我的问题是如何在一个类中创建一个 HttpServletRequest 和 HttpServletResponse 对象。在 jsp 中,我们不创建任何请求对象。我们可以直接使用它。但是在一个类中,我们要么必须扩展 HttpServlet 要么从调用方法传递请求和响应对象。那么这里的 jsp 和 clas 有什么区别呢?两者最终都被编译为类权。

问候,

麦克莱恩莫里斯平托

4

1 回答 1

3

如果您要求在 REST 类中创建 HttpServletRequest 和 HttpServletResponse 对象,请使用 @Context 注释。

@Path("/employee/{joiningdate}") 公共类员工 {

Date joiningdate;
@GET
@Produces("application/xml")    
public Employee(@PathParam("joiningdate") Date joiningdate, @Context Request req, 
        @Context UriInfo ui) {

    this.joiningdate = joiningdate;
    ...
    this.tag = computeEntityTag(ui.getRequestUri());
    if (req.getMethod().equals("GET")) {
        Response.ResponseBuilder rb = req.evaluatePreconditions(tag);
        // Preconditions met
        if (rb != null) {
            return rb.build();
        }
        // Preconditions not met
        rb = Response.ok();
        rb.tag(tag);
        return rb.build();
    }
}

}

于 2013-11-06T05:38:50.817 回答