使用 JAX-RS 获取服务器的基本 url

发布于 2024-12-08 07:12:20 字数 134 浏览 4 评论 0原文

如何使用 JAX-RS 获取服务器的基本 url?基本上,当程序位于本地主机上时,我想要“http://localhost:8080/..”;当程序位于实时服务器上时,我想要“http://www.theSite.com/...”。我正在使用泽西岛框架。

How do I get the base url of my server with JAX-RS? Basically I want ""http://localhost:8080/.." when the program is on localhost and "http://www.theSite.com/..." when the program is on a live server. I am using Jersey Framework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉酒的小男人 2024-12-15 07:12:20

是的,您可以使用 myUri = uri.getBaseUri();

这里您如何获取 Uri 对象:

@Path("myresource")
public class MyResource{

  @Context
  UriInfo uri;

  @GET
  public String myresponse(){
    URI myUri = uri.getBaseUri();
    return ...
  }
}

您将通过 UriInfo 获得大量信息。 在此处查看 javadoc。

Yes, you may use myUri = uri.getBaseUri();

Here how you get the Uri object :

@Path("myresource")
public class MyResource{

  @Context
  UriInfo uri;

  @GET
  public String myresponse(){
    URI myUri = uri.getBaseUri();
    return ...
  }
}

You will have plenty of informations with UriInfo. Check here the javadoc.

无尽的现实 2024-12-15 07:12:20

使用@Context UriInfogetBaseUri()

Use getBaseUri() of @Context UriInfo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文