在Status Created上设置Location头路径时,Javax Response会预先设置方法路径

前端之家收集整理的这篇文章主要介绍了在Status Created上设置Location头路径时,Javax Response会预先设置方法路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们使用Dropwizard / Jersey来构建Web服务.资源具有路径,并且该方法具有子路径.当返回创建的响应(201)时,我们获得的方法的路径被添加到我们提供的位置之前.当一个位置(我知道的设计)返回状态OK时,一切都很好,并且就像我们提供的那样返回位置.

我们如何返回不是我们方法位置的子路径的位置?

在下面的示例中:
到“http:// localhost / foo / bar”(创建状态)响应位置“http:// localhost / foo / bar / wibble”(注意/ foo / bar)

到达“http:// localhost / foo / baz”(ok状态)响应“http:// localhost / wibble”的位置,这就是我们想要的.

import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.core.Response;
import java.net.URI;

@Path("/foo")
public class FooResource {

    @POST
    @Path("/bar")
    public Response bar() {

        URI uriOfCreatedResource = URI.create("/wibble");
        return Response.created(uriOfCreatedResource).build();
    }

    @POST
    @Path("/baz")
    public Response baz() {

        URI uriOfCreatedResource = URI.create("/wibble");
        return Response.ok().location(uriOfCreatedResource).build();
    }
}

解决方法

在GlassFish(JavaEE6)上发生在我身上.
我认为这是一个错误,但我从未设法将代码挖掘到实际的URI转换….

我发现了一个解决方法

public Response bar(@Context UriInfo info) {
   URI absoluteURI=info.getBaseUriBuilder().path("/wibble").build();
   return Response.created(absoluteURI).build();
}
原文链接:https://www.f2er.com/java/121905.html

猜你在找的Java相关文章