使用 JAX-RS 获取服务器的基本 url
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用
myUri = uri.getBaseUri();
这里您如何获取 Uri 对象:
您将通过 UriInfo 获得大量信息。 在此处查看 javadoc。
Yes, you may use
myUri = uri.getBaseUri();
Here how you get the Uri object :
You will have plenty of informations with UriInfo. Check here the javadoc.
使用
@Context UriInfo
的getBaseUri()
。Use
getBaseUri()
of@Context UriInfo
.